UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

77 lines (76 loc) 2.46 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'; import type { PaymentProviderType } from './PaymentProviderType'; /** * * @export * @interface CustomerPaymentMethodQueryParams */ export interface CustomerPaymentMethodQueryParams { /** * * @type {DateTimeFilter} * @memberof CustomerPaymentMethodQueryParams */ createdAt?: DateTimeFilter | null; /** * Specifies which fields in the response should be expanded. * @type {Array<string>} * @memberof CustomerPaymentMethodQueryParams */ expand?: Array<string>; /** * Page number * @type {number} * @memberof CustomerPaymentMethodQueryParams */ pageNumber?: number; /** * Page size * @type {number} * @memberof CustomerPaymentMethodQueryParams */ pageSize?: number; /** * * @type {PaymentProviderType} * @memberof CustomerPaymentMethodQueryParams */ providerType?: PaymentProviderType | null; /** * Sort direction. * @type {boolean} * @memberof CustomerPaymentMethodQueryParams */ sortDescending?: boolean; /** * Key name based on which data is sorted. * @type {string} * @memberof CustomerPaymentMethodQueryParams */ sortKey?: string; /** * * @type {DateTimeFilter} * @memberof CustomerPaymentMethodQueryParams */ updatedAt?: DateTimeFilter | null; } /** * Check if a given object implements the CustomerPaymentMethodQueryParams interface. */ export declare function instanceOfCustomerPaymentMethodQueryParams(value: object): value is CustomerPaymentMethodQueryParams; export declare function CustomerPaymentMethodQueryParamsFromJSON(json: any): CustomerPaymentMethodQueryParams; export declare function CustomerPaymentMethodQueryParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerPaymentMethodQueryParams; export declare function CustomerPaymentMethodQueryParamsToJSON(json: any): CustomerPaymentMethodQueryParams; export declare function CustomerPaymentMethodQueryParamsToJSONTyped(value?: CustomerPaymentMethodQueryParams | null, ignoreDiscriminator?: boolean): any;