/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response returned after creating a Stripe checkout session. */ export type CheckoutSessionResponse = { /** * Stripe-hosted checkout page URL. */ checkout_url: string; /** * Stripe checkout session ID. */ session_id: string; /** * Platform key for this checkout. */ platform_key: string; };