TypeAlias.ImportJobReport
type ImportJobReport = {
createdAt: string;
entityData: Record<string, unknown>;
entityName: string;
error?: string;
id: string;
result?: Record<string, unknown>;
status: | "unknown"
| "active"
| "failed"
| "completed"
| "delayed"
| "prioritized"
| "waiting"
| "waiting-children";
updatedAt: string;
};
Type Declaration
| Name | Type |
|---|---|
createdAt | string |
entityData | Record<string, unknown> |
entityName | string |
error? | string |
id | string |
result? | Record<string, unknown> |
status | |
updatedAt | string |