src/app/modules/org-management/interfaces/org-upload-status-response.ts
Properties |
channel |
channel:
|
Type : string
|
contactDetail |
contactDetail:
|
Type : Array<string>
|
description |
description:
|
Type : string
|
err_msg |
err_msg:
|
Type : string
|
externalId |
externalId:
|
Type : string
|
homeUrl |
homeUrl:
|
Type : string
|
id |
id:
|
Type : string
|
isRootOrg |
isRootOrg:
|
Type : string
|
orgCode |
orgCode:
|
Type : string
|
orgName |
orgName:
|
Type : string
|
orgType |
orgType:
|
Type : string
|
preferredLanguage |
preferredLanguage:
|
Type : string
|
theme |
theme:
|
Type : string
|
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>;
}