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