UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

40 lines (39 loc) 1.4 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 { RouteConfiguration } from './RouteConfiguration'; /** * * @export * @interface UpdatePaymentRouteRequest */ export interface UpdatePaymentRouteRequest { /** * The name of the payment route. * @type {string} * @memberof UpdatePaymentRouteRequest */ name: string; /** * * @type {RouteConfiguration} * @memberof UpdatePaymentRouteRequest */ routeConfiguration: RouteConfiguration; } /** * Check if a given object implements the UpdatePaymentRouteRequest interface. */ export declare function instanceOfUpdatePaymentRouteRequest(value: object): value is UpdatePaymentRouteRequest; export declare function UpdatePaymentRouteRequestFromJSON(json: any): UpdatePaymentRouteRequest; export declare function UpdatePaymentRouteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePaymentRouteRequest; export declare function UpdatePaymentRouteRequestToJSON(json: any): UpdatePaymentRouteRequest; export declare function UpdatePaymentRouteRequestToJSONTyped(value?: UpdatePaymentRouteRequest | null, ignoreDiscriminator?: boolean): any;