ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
86 lines • 1.89 kB
TypeScript
/**
* 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 { MediaModel } from './media-model';
/**
*
* @export
* @interface CreateSpecialtyCommand
*/
export interface CreateSpecialtyCommand {
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'name'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'description'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'content'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'markdown'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'photo'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'photoThumbnail'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'background'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'backgroundThumbnail'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'customStyle'?: string | null;
/**
*
* @type {string}
* @memberof CreateSpecialtyCommand
*/
'specialtyTypeId'?: string;
/**
*
* @type {Array<MediaModel>}
* @memberof CreateSpecialtyCommand
*/
'medias'?: Array<MediaModel> | null;
}
//# sourceMappingURL=create-specialty-command.d.ts.map