bx-rest
Version: 
Bitrix24 REST API client angular, vue or typescript
17 lines (16 loc) • 392 B
TypeScript
export interface iBXRestProfileHttp extends iBXRestProfileBase {
    ID: string;
}
export interface iBXRestProfile extends iBXRestProfileBase {
    ID: number;
}
interface iBXRestProfileBase {
    ADMIN: boolean;
    LAST_NAME: string;
    NAME: string;
    PERSONAL_GENDER: 'M' | 'F' | '';
    PERSONAL_PHOTO: string;
    TIME_ZONE: number | null;
    TIME_ZONE_OFFSET: string;
}
export {};