UNPKG

ch-admin-api-client-typescript

Version:
78 lines 1.73 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 { ChargeStatus } from './charge-status'; import { MediaModel } from './media-model'; import { PaymentMethod } from './payment-method'; import { PaymentStatus } from './payment-status'; import { RefundStatus } from './refund-status'; /** * * @export * @interface PaymentModel */ export interface PaymentModel { /** * * @type {string} * @memberof PaymentModel */ 'id'?: string; /** * * @type {PaymentMethod} * @memberof PaymentModel */ 'paymentMethod'?: PaymentMethod; /** * * @type {string} * @memberof PaymentModel */ 'currency'?: string | null; /** * * @type {number} * @memberof PaymentModel */ 'fee'?: number; /** * * @type {number} * @memberof PaymentModel */ 'applicationFee'?: number; /** * * @type {ChargeStatus} * @memberof PaymentModel */ 'chargeStatus'?: ChargeStatus; /** * * @type {RefundStatus} * @memberof PaymentModel */ 'refundStatus'?: RefundStatus; /** * * @type {PaymentStatus} * @memberof PaymentModel */ 'paymentStatus'?: PaymentStatus; /** * * @type {Array<MediaModel>} * @memberof PaymentModel */ 'medias'?: Array<MediaModel> | null; } //# sourceMappingURL=payment-model.d.ts.map