UNPKG

@apideck/node

Version:
39 lines (38 loc) 1.21 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Wallet details for this payment. This field is currently not available. Reach out to our team for more info. * @export * @interface WalletDetails */ export interface WalletDetails { /** * The status of the wallet payment. The status can be AUTHORIZED, CAPTURED, VOIDED, or FAILED. * @type {string} * @memberof WalletDetails */ status?: WalletDetailsStatus; } /** * @export * @enum {string} */ export declare enum WalletDetailsStatus { authorized = "authorized", captured = "captured", voided = "voided", failed = "failed", other = "other" } export declare function WalletDetailsFromJSON(json: any): WalletDetails; export declare function WalletDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletDetails; export declare function WalletDetailsToJSON(value?: WalletDetails | null): any;