/** * 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. */ /** * Exchange source for a flow. Present when sourceType is 'exchange'. Contains the exchange reference and provider-specific metadata (e.g. buyUrl for Coinbase). * @export * @interface FlowExchangeSource */ export interface FlowExchangeSource { /** * * @type {string} * @memberof FlowExchangeSource */ exchangeId: string; /** * Provider-specific data. Shape varies by exchange. * @type {object} * @memberof FlowExchangeSource */ metadata: object; } export declare function FlowExchangeSourceFromJSON(json: any): FlowExchangeSource; export declare function FlowExchangeSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowExchangeSource; export declare function FlowExchangeSourceToJSON(value?: FlowExchangeSource | null): any;