/** * 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. */ /** * Resolved settlement destination and completion time for a flow. * @export * @interface FlowSettlementData */ export interface FlowSettlementData { /** * * @type {string} * @memberof FlowSettlementData */ toChainId: string; /** * * @type {string} * @memberof FlowSettlementData */ toToken: string; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight, hyphens allowed for chains using base64url-encoded addresses like TON) * @type {string} * @memberof FlowSettlementData */ toAddress: string; /** * ISO 8601 timestamp of when the settlement was completed * @type {Date} * @memberof FlowSettlementData */ completedAt?: Date; } export declare function FlowSettlementDataFromJSON(json: any): FlowSettlementData; export declare function FlowSettlementDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowSettlementData; export declare function FlowSettlementDataToJSON(value?: FlowSettlementData | null): any;