/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CancelRefundReversalStatus } from "./cancel-refund-reversal-status"; /** * Status information of the related cancel. This property is only present on canceled payment or refund items. * @export * @interface PaymentInfoCancel */ export interface PaymentInfoCancel { /** * Unique system generated identifier for the entity. * @type {string} * @memberof PaymentInfoCancel */ id?: string; /** * Type of the payment object. * @type {string} * @memberof PaymentInfoCancel */ type?: PaymentInfoCancelTypeEnum; /** * Enumerated description of the payment item. * @type {string} * @memberof PaymentInfoCancel */ description?: PaymentInfoCancelDescriptionEnum; /** * * @type {CancelRefundReversalStatus} * @memberof PaymentInfoCancel */ status?: CancelRefundReversalStatus; /** * ISO-8601 UTC date/time format. * @type {string} * @memberof PaymentInfoCancel */ createDate?: string; } export declare const PaymentInfoCancelTypeEnum: { readonly Cancel: "cancel"; }; export declare type PaymentInfoCancelTypeEnum = typeof PaymentInfoCancelTypeEnum[keyof typeof PaymentInfoCancelTypeEnum]; export declare const PaymentInfoCancelDescriptionEnum: { readonly Payment: "Payment"; }; export declare type PaymentInfoCancelDescriptionEnum = typeof PaymentInfoCancelDescriptionEnum[keyof typeof PaymentInfoCancelDescriptionEnum];