UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

41 lines (40 loc) 1.51 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 { InvoiceExternal } from './InvoiceExternal'; import type { SubscriptionExternal } from './SubscriptionExternal'; /** * * @export * @interface ResumeSubscriptionResponse */ export interface ResumeSubscriptionResponse { /** * * @type {InvoiceExternal} * @memberof ResumeSubscriptionResponse */ invoice?: InvoiceExternal | null; /** * The subscription being resumed. * @type {SubscriptionExternal} * @memberof ResumeSubscriptionResponse */ subscription: SubscriptionExternal; } /** * Check if a given object implements the ResumeSubscriptionResponse interface. */ export declare function instanceOfResumeSubscriptionResponse(value: object): value is ResumeSubscriptionResponse; export declare function ResumeSubscriptionResponseFromJSON(json: any): ResumeSubscriptionResponse; export declare function ResumeSubscriptionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResumeSubscriptionResponse; export declare function ResumeSubscriptionResponseToJSON(json: any): ResumeSubscriptionResponse; export declare function ResumeSubscriptionResponseToJSONTyped(value?: ResumeSubscriptionResponse | null, ignoreDiscriminator?: boolean): any;