@getopenpay/client
Version:
OpenPay API TypeScript SDK
40 lines (39 loc) • 1.31 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { CurrencyEnum } from './CurrencyEnum';
/**
*
* @export
* @interface CustomerBalanceExternal
*/
export interface CustomerBalanceExternal {
/**
*
* @type {number}
* @memberof CustomerBalanceExternal
*/
amountAtom: number;
/**
*
* @type {CurrencyEnum}
* @memberof CustomerBalanceExternal
*/
currency: CurrencyEnum;
}
/**
* Check if a given object implements the CustomerBalanceExternal interface.
*/
export declare function instanceOfCustomerBalanceExternal(value: object): value is CustomerBalanceExternal;
export declare function CustomerBalanceExternalFromJSON(json: any): CustomerBalanceExternal;
export declare function CustomerBalanceExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerBalanceExternal;
export declare function CustomerBalanceExternalToJSON(json: any): CustomerBalanceExternal;
export declare function CustomerBalanceExternalToJSONTyped(value?: CustomerBalanceExternal | null, ignoreDiscriminator?: boolean): any;