UNPKG

ch-admin-api-client-typescript

Version:
68 lines 1.35 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 { RecurringInterval } from './recurring-interval'; /** * * @export * @interface PlanModel */ export interface PlanModel { /** * * @type {string} * @memberof PlanModel */ 'id'?: string; /** * * @type {string} * @memberof PlanModel */ 'name'?: string | null; /** * * @type {number} * @memberof PlanModel */ 'memberLimit'?: number; /** * * @type {number} * @memberof PlanModel */ 'unitPrice'?: number; /** * * @type {string} * @memberof PlanModel */ 'stripePriceId'?: string | null; /** * * @type {RecurringInterval} * @memberof PlanModel */ 'interval'?: RecurringInterval; /** * * @type {boolean} * @memberof PlanModel */ 'isActive'?: boolean; /** * * @type {number} * @memberof PlanModel */ 'order'?: number; } //# sourceMappingURL=plan-model.d.ts.map