Type alias ProposalEventDTO

ProposalEventDTO: {
    eventDate: string;
    eventType: string;
} & {
    proposal: {
        constraints: string;
        properties: Record<string, any>;
    } & {
        issuerId: string;
        prevProposalId?: string;
        proposalId: string;
        state: "Initial" | "Draft" | "Rejected" | "Accepted" | "Expired";
        timestamp: string;
    };
}

Type declaration

  • eventDate: string
  • eventType: string

Type declaration

  • proposal: {
        constraints: string;
        properties: Record<string, any>;
    } & {
        issuerId: string;
        prevProposalId?: string;
        proposalId: string;
        state: "Initial" | "Draft" | "Rejected" | "Accepted" | "Expired";
        timestamp: string;
    }