UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

76 lines (75 loc) 2.24 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 { DateTimeFilter } from './DateTimeFilter'; /** * * @export * @interface CheckoutSessionQueryParams */ export interface CheckoutSessionQueryParams { /** * * @type {DateTimeFilter} * @memberof CheckoutSessionQueryParams */ createdAt?: DateTimeFilter | null; /** * Specifies which fields in the response should be expanded. * @type {Array<string>} * @memberof CheckoutSessionQueryParams */ expand?: Array<string>; /** * Page number * @type {number} * @memberof CheckoutSessionQueryParams */ pageNumber?: number; /** * Page size * @type {number} * @memberof CheckoutSessionQueryParams */ pageSize?: number; /** * * @type {string} * @memberof CheckoutSessionQueryParams */ paymentLinkId?: string | null; /** * Sort direction. * @type {boolean} * @memberof CheckoutSessionQueryParams */ sortDescending?: boolean; /** * Key name based on which data is sorted. * @type {string} * @memberof CheckoutSessionQueryParams */ sortKey?: string; /** * * @type {DateTimeFilter} * @memberof CheckoutSessionQueryParams */ updatedAt?: DateTimeFilter | null; } /** * Check if a given object implements the CheckoutSessionQueryParams interface. */ export declare function instanceOfCheckoutSessionQueryParams(value: object): value is CheckoutSessionQueryParams; export declare function CheckoutSessionQueryParamsFromJSON(json: any): CheckoutSessionQueryParams; export declare function CheckoutSessionQueryParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutSessionQueryParams; export declare function CheckoutSessionQueryParamsToJSON(json: any): CheckoutSessionQueryParams; export declare function CheckoutSessionQueryParamsToJSONTyped(value?: CheckoutSessionQueryParams | null, ignoreDiscriminator?: boolean): any;