UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

39 lines (38 loc) 1.2 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. */ /** * * @export * @interface ListActiveSubParams */ export interface ListActiveSubParams { /** * * @type {string} * @memberof ListActiveSubParams */ priceId?: string | null; /** * * @type {string} * @memberof ListActiveSubParams */ productId?: string | null; } /** * Check if a given object implements the ListActiveSubParams interface. */ export declare function instanceOfListActiveSubParams(value: object): value is ListActiveSubParams; export declare function ListActiveSubParamsFromJSON(json: any): ListActiveSubParams; export declare function ListActiveSubParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListActiveSubParams; export declare function ListActiveSubParamsToJSON(json: any): ListActiveSubParams; export declare function ListActiveSubParamsToJSONTyped(value?: ListActiveSubParams | null, ignoreDiscriminator?: boolean): any;