/** * 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 CoinbaseOnrampGetBuyUrlResponse */ export interface CoinbaseOnrampGetBuyUrlResponse { /** * The URL to the hosted widget the user should be redirected to. * @type {string} * @memberof CoinbaseOnrampGetBuyUrlResponse */ url: string; } export declare function CoinbaseOnrampGetBuyUrlResponseFromJSON(json: any): CoinbaseOnrampGetBuyUrlResponse; export declare function CoinbaseOnrampGetBuyUrlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinbaseOnrampGetBuyUrlResponse; export declare function CoinbaseOnrampGetBuyUrlResponseToJSON(value?: CoinbaseOnrampGetBuyUrlResponse | null): any;