UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

52 lines (51 loc) 1.79 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CheckoutSessionExternal } from './CheckoutSessionExternal'; /** * * @export * @interface ListResponseCheckoutSessionExternal */ export interface ListResponseCheckoutSessionExternal { /** * * @type {Array<CheckoutSessionExternal>} * @memberof ListResponseCheckoutSessionExternal */ data: Array<CheckoutSessionExternal>; /** * * @type {number} * @memberof ListResponseCheckoutSessionExternal */ pageNumber: number; /** * * @type {number} * @memberof ListResponseCheckoutSessionExternal */ pageSize: number; /** * * @type {number} * @memberof ListResponseCheckoutSessionExternal */ totalObjects: number; } /** * Check if a given object implements the ListResponseCheckoutSessionExternal interface. */ export declare function instanceOfListResponseCheckoutSessionExternal(value: object): value is ListResponseCheckoutSessionExternal; export declare function ListResponseCheckoutSessionExternalFromJSON(json: any): ListResponseCheckoutSessionExternal; export declare function ListResponseCheckoutSessionExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseCheckoutSessionExternal; export declare function ListResponseCheckoutSessionExternalToJSON(json: any): ListResponseCheckoutSessionExternal; export declare function ListResponseCheckoutSessionExternalToJSONTyped(value?: ListResponseCheckoutSessionExternal | null, ignoreDiscriminator?: boolean): any;