UNPKG

ch-admin-api-client-typescript

Version:
111 lines 2.48 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 { MarketingType } from './marketing-type'; import { MediaModel } from './media-model'; /** * * @export * @interface UpdateSpecialtyTypeCommand */ export interface UpdateSpecialtyTypeCommand { /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'markdown'?: string | null; /** * * @type {MarketingType} * @memberof UpdateSpecialtyTypeCommand */ 'marketingType'?: MarketingType; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'photoThumbnail'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'background'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'backgroundThumbnail'?: string | null; /** * * @type {string} * @memberof UpdateSpecialtyTypeCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof UpdateSpecialtyTypeCommand */ 'order'?: number | null; /** * * @type {boolean} * @memberof UpdateSpecialtyTypeCommand */ 'confirmed'?: boolean; /** * * @type {Array<MediaModel>} * @memberof UpdateSpecialtyTypeCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-specialty-type-command.d.ts.map