@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
23 lines (19 loc) • 739 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Status of the checkout session. Active: the checkout session is still in-progress. Completed: the payments of a checkout session is successful and the checkout session is completed. Expired: indicates that it expired and is no longer accepting any new payments.
* @export
* @enum {string}
*/
export const CheckoutSessionStatus = {
Active: "active",
Completed: "completed",
Expired: "expired"
} as const;
export type CheckoutSessionStatus =
typeof CheckoutSessionStatus[keyof typeof CheckoutSessionStatus];