@getopenpay/client
Version:
OpenPay API TypeScript SDK
40 lines (39 loc) • 1.4 kB
TypeScript
/**
* 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 CreatePaymentRouteRequest
*/
export interface CreatePaymentRouteRequest {
/**
* The name of the payment route.
* @type {string}
* @memberof CreatePaymentRouteRequest
*/
name: string;
/**
*
* @type {RouteConfiguration}
* @memberof CreatePaymentRouteRequest
*/
routeConfiguration: RouteConfiguration;
}
/**
* Check if a given object implements the CreatePaymentRouteRequest interface.
*/
export declare function instanceOfCreatePaymentRouteRequest(value: object): value is CreatePaymentRouteRequest;
export declare function CreatePaymentRouteRequestFromJSON(json: any): CreatePaymentRouteRequest;
export declare function CreatePaymentRouteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePaymentRouteRequest;
export declare function CreatePaymentRouteRequestToJSON(json: any): CreatePaymentRouteRequest;
export declare function CreatePaymentRouteRequestToJSONTyped(value?: CreatePaymentRouteRequest | null, ignoreDiscriminator?: boolean): any;