19 lines
392 B
TypeScript
19 lines
392 B
TypeScript
interface ResponseObject {
|
|
createdAt: Date;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
detail: string;
|
|
id: string;
|
|
isActive: boolean;
|
|
isDate: boolean;
|
|
issueDate: Date;
|
|
issuer: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdatedAt: Date;
|
|
profileId: string;
|
|
refCommandDate: Date;
|
|
refCommandNo: string;
|
|
}
|
|
|
|
export type { ResponseObject };
|