@ecp.eth/sdk / indexer / IndexerAPIReportOutputSchemaType
Type Alias: IndexerAPIReportOutputSchemaType
type IndexerAPIReportOutputSchemaType = {
commentId: `0x${string}`;
createdAt: string;
id: string;
message: string;
reportee: `0x${string}`;
status: "pending" | "resolved" | "closed";
updatedAt: string;
};Defined in: packages/sdk/src/indexer/schemas.ts:702
Type declaration
commentId
commentId: `0x${string}` = HexSchema;createdAt
createdAt: string = dateToString;id
id: string;message
message: string;reportee
reportee: `0x${string}` = HexSchema;status
status: "pending" | "resolved" | "closed" = IndexerAPIReportStatusSchema;updatedAt
updatedAt: string = dateToString;