/**
 * 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;
}
