UNPKG

ch-admin-api-client-typescript

Version:
86 lines 1.83 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 { MediaModel } from './media-model'; /** * * @export * @interface UpdateLandingCommand */ export interface UpdateLandingCommand { /** * * @type {string} * @memberof UpdateLandingCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'name'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'slug'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'description'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'content'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'customStyle'?: string | null; /** * * @type {number} * @memberof UpdateLandingCommand */ 'order'?: number; /** * * @type {string} * @memberof UpdateLandingCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof UpdateLandingCommand */ 'photoThumbnail'?: string | null; /** * * @type {boolean} * @memberof UpdateLandingCommand */ 'confirmed'?: boolean; /** * * @type {Array<MediaModel>} * @memberof UpdateLandingCommand */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=update-landing-command.d.ts.map