/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export */ export declare const PaymentRequestCaptureMethod: { readonly Automatic: "AUTOMATIC"; readonly Manual: "MANUAL"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type PaymentRequestCaptureMethod = typeof PaymentRequestCaptureMethod[keyof typeof PaymentRequestCaptureMethod]; export declare function PaymentRequestCaptureMethodFromJSON(json: any): PaymentRequestCaptureMethod; export declare function PaymentRequestCaptureMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentRequestCaptureMethod; export declare function PaymentRequestCaptureMethodToJSON(value?: PaymentRequestCaptureMethod | null): any;