src/app/modules/org-management/interfaces/org-type.ts
Properties |
|
| err |
err:
|
Type : ServerResponse
|
| Optional |
| id |
id:
|
Type : string
|
| Optional |
| orgTypeData |
orgTypeData:
|
Type : ServerResponse
|
| Optional |
| params |
params:
|
Type : object
|
| Optional |
| responseCode |
responseCode:
|
Type : string
|
| Optional |
| result |
result:
|
Type : any
|
| Optional |
| ts |
ts:
|
Type : string
|
| Optional |
| ver |
ver:
|
Type : string
|
| Optional |
import { ServerResponse } from '@sunbird/shared';
export interface IorgTypeData {
err?: ServerResponse;
orgTypeData?: ServerResponse;
id?: string;
params?: object;
responseCode?: string;
result?: any;
ts?: string;
ver?: string;
}