src/app/modules/org-management/interfaces/org-upload-status-response.ts
Properties |
failureResult |
failureResult:
|
Type : Array<IOrgUploadStatusResult>
|
objectType |
objectType:
|
Type : string
|
processId |
processId:
|
Type : string
|
status |
status:
|
Type : string
|
successResult |
successResult:
|
Type : Array<IOrgUploadStatusResult>
|
export interface IOrgUploadStatusResponse {
objectType: string;
processId: string;
status: string;
successResult: Array<IOrgUploadStatusResult>;
failureResult: Array<IOrgUploadStatusResult>;
}
export interface IOrgUploadStatusResult {
orgName: string;
homeUrl: string;
orgType: string;
err_msg: string;
preferredLanguage: string;
orgCode: string;
channel: string;
externalId: string;
description: string;
theme: string;
isRootOrg: string;
id: string;
contactDetail: Array<string>;
}