@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
26 lines (25 loc) • 697 B
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { CheckoutSessionMoney } from "./checkout-session-money";
/**
*
* @export
* @interface CheckoutSessionCreationRequest
*/
export interface CheckoutSessionCreationRequest {
/**
* The URL returned to you through client-side callback when the payment is completed.
* @type {string}
* @memberof CheckoutSessionCreationRequest
*/
successUrl?: string;
/**
*
* @type {CheckoutSessionMoney}
* @memberof CheckoutSessionCreationRequest
*/
amount: CheckoutSessionMoney;
}