/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ChainEnum } from './ChainEnum'; /** * * @export * @interface CheckoutTransactionDestinationAddress */ export interface CheckoutTransactionDestinationAddress { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof CheckoutTransactionDestinationAddress */ address: string; /** * * @type {ChainEnum} * @memberof CheckoutTransactionDestinationAddress */ chainName: ChainEnum; } export declare function CheckoutTransactionDestinationAddressFromJSON(json: any): CheckoutTransactionDestinationAddress; export declare function CheckoutTransactionDestinationAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutTransactionDestinationAddress; export declare function CheckoutTransactionDestinationAddressToJSON(value?: CheckoutTransactionDestinationAddress | null): any;