UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

51 lines (50 loc) 1.76 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 DeleteSubscriptionItemResponse */ export interface DeleteSubscriptionItemResponse { /** * * @type {Date} * @memberof DeleteSubscriptionItemResponse */ deletedAt: Date | null; /** * Whether or not this item will be dropped from subscription before next renewal * @type {boolean} * @memberof DeleteSubscriptionItemResponse */ dropAtEnd?: boolean; /** * Message describing result of API call. * @type {string} * @memberof DeleteSubscriptionItemResponse */ message?: string; /** * Unique identifier of the subscription_item. * @type {string} * @memberof DeleteSubscriptionItemResponse */ subscriptionItemId: string; } /** * Check if a given object implements the DeleteSubscriptionItemResponse interface. */ export declare function instanceOfDeleteSubscriptionItemResponse(value: object): value is DeleteSubscriptionItemResponse; export declare function DeleteSubscriptionItemResponseFromJSON(json: any): DeleteSubscriptionItemResponse; export declare function DeleteSubscriptionItemResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteSubscriptionItemResponse; export declare function DeleteSubscriptionItemResponseToJSON(json: any): DeleteSubscriptionItemResponse; export declare function DeleteSubscriptionItemResponseToJSONTyped(value?: DeleteSubscriptionItemResponse | null, ignoreDiscriminator?: boolean): any;