UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

39 lines (38 loc) 1.38 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 DeletePaymentRouteResponse */ export interface DeletePaymentRouteResponse { /** * Message describing result of API call. * @type {string} * @memberof DeletePaymentRouteResponse */ message?: string; /** * Unique identifier of the payment route. * @type {string} * @memberof DeletePaymentRouteResponse */ paymentRouteId: string; } /** * Check if a given object implements the DeletePaymentRouteResponse interface. */ export declare function instanceOfDeletePaymentRouteResponse(value: object): value is DeletePaymentRouteResponse; export declare function DeletePaymentRouteResponseFromJSON(json: any): DeletePaymentRouteResponse; export declare function DeletePaymentRouteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeletePaymentRouteResponse; export declare function DeletePaymentRouteResponseToJSON(json: any): DeletePaymentRouteResponse; export declare function DeletePaymentRouteResponseToJSONTyped(value?: DeletePaymentRouteResponse | null, ignoreDiscriminator?: boolean): any;