UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

33 lines (32 loc) 1.26 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 SubscriptionItemQueryParams */ export interface SubscriptionItemQueryParams { /** * The ID of the subscription whose items will be retrieved. * @type {string} * @memberof SubscriptionItemQueryParams */ subscriptionId: string; } /** * Check if a given object implements the SubscriptionItemQueryParams interface. */ export declare function instanceOfSubscriptionItemQueryParams(value: object): value is SubscriptionItemQueryParams; export declare function SubscriptionItemQueryParamsFromJSON(json: any): SubscriptionItemQueryParams; export declare function SubscriptionItemQueryParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionItemQueryParams; export declare function SubscriptionItemQueryParamsToJSON(json: any): SubscriptionItemQueryParams; export declare function SubscriptionItemQueryParamsToJSONTyped(value?: SubscriptionItemQueryParams | null, ignoreDiscriminator?: boolean): any;