UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

52 lines (51 loc) 1.73 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 { SubscriptionExternal } from './SubscriptionExternal'; /** * * @export * @interface ListResponseSubscriptionExternal */ export interface ListResponseSubscriptionExternal { /** * * @type {Array<SubscriptionExternal>} * @memberof ListResponseSubscriptionExternal */ data: Array<SubscriptionExternal>; /** * * @type {number} * @memberof ListResponseSubscriptionExternal */ pageNumber: number; /** * * @type {number} * @memberof ListResponseSubscriptionExternal */ pageSize: number; /** * * @type {number} * @memberof ListResponseSubscriptionExternal */ totalObjects: number; } /** * Check if a given object implements the ListResponseSubscriptionExternal interface. */ export declare function instanceOfListResponseSubscriptionExternal(value: object): value is ListResponseSubscriptionExternal; export declare function ListResponseSubscriptionExternalFromJSON(json: any): ListResponseSubscriptionExternal; export declare function ListResponseSubscriptionExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseSubscriptionExternal; export declare function ListResponseSubscriptionExternalToJSON(json: any): ListResponseSubscriptionExternal; export declare function ListResponseSubscriptionExternalToJSONTyped(value?: ListResponseSubscriptionExternal | null, ignoreDiscriminator?: boolean): any;