/** * 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 { CoinbaseOnrampOrderPaymentLinkType } from './CoinbaseOnrampOrderPaymentLinkType'; /** * Payment link details for completing the purchase * @export * @interface CoinbaseOnrampOrderResponsePaymentLink */ export interface CoinbaseOnrampOrderResponsePaymentLink { /** * The URL to the hosted widget the user should be redirected to. For certain payment link types you can append your own redirect_url query parameter to this URL to ensure the user is redirected back to your app after the widget completes. * @type {string} * @memberof CoinbaseOnrampOrderResponsePaymentLink */ url: string; /** * * @type {CoinbaseOnrampOrderPaymentLinkType} * @memberof CoinbaseOnrampOrderResponsePaymentLink */ paymentLinkType: CoinbaseOnrampOrderPaymentLinkType; } export declare function CoinbaseOnrampOrderResponsePaymentLinkFromJSON(json: any): CoinbaseOnrampOrderResponsePaymentLink; export declare function CoinbaseOnrampOrderResponsePaymentLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinbaseOnrampOrderResponsePaymentLink; export declare function CoinbaseOnrampOrderResponsePaymentLinkToJSON(value?: CoinbaseOnrampOrderResponsePaymentLink | null): any;