UNPKG

ch-admin-api-client-typescript

Version:
80 lines 1.78 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Gender } from './gender'; /** * * @export * @interface CreateContentManagerCommand */ export interface CreateContentManagerCommand { /** * * @type {string} * @memberof CreateContentManagerCommand */ 'userName'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'email'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'firstName'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'lastName'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'phone'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'photoThumbnail'?: string | null; /** * * @type {Gender} * @memberof CreateContentManagerCommand */ 'gender'?: Gender; /** * * @type {Date} * @memberof CreateContentManagerCommand */ 'dateOfBirth'?: Date | null; /** * * @type {string} * @memberof CreateContentManagerCommand */ 'timeZone'?: string | null; } //# sourceMappingURL=create-content-manager-command.d.ts.map