UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

39 lines (38 loc) 1.29 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 DeleteProductResponse */ export interface DeleteProductResponse { /** * Message describing result of API call. * @type {string} * @memberof DeleteProductResponse */ message?: string; /** * Unique identifier of the product. * @type {string} * @memberof DeleteProductResponse */ productId: string; } /** * Check if a given object implements the DeleteProductResponse interface. */ export declare function instanceOfDeleteProductResponse(value: object): value is DeleteProductResponse; export declare function DeleteProductResponseFromJSON(json: any): DeleteProductResponse; export declare function DeleteProductResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteProductResponse; export declare function DeleteProductResponseToJSON(json: any): DeleteProductResponse; export declare function DeleteProductResponseToJSONTyped(value?: DeleteProductResponse | null, ignoreDiscriminator?: boolean): any;