/** * 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. */ /** * * @export * @interface CheckoutSettlementData */ export interface CheckoutSettlementData { /** * * @type {string} * @memberof CheckoutSettlementData */ toChainId: string; /** * * @type {string} * @memberof CheckoutSettlementData */ toToken: string; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof CheckoutSettlementData */ toAddress: string; /** * ISO 8601 timestamp of when the settlement was completed * @type {Date} * @memberof CheckoutSettlementData */ completedAt?: Date; } export declare function CheckoutSettlementDataFromJSON(json: any): CheckoutSettlementData; export declare function CheckoutSettlementDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutSettlementData; export declare function CheckoutSettlementDataToJSON(value?: CheckoutSettlementData | null): any;