@getopenpay/client
Version:
OpenPay API TypeScript SDK
40 lines (39 loc) • 1.53 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 { GenericNodeInput } from './GenericNodeInput';
/**
*
* @export
* @interface GeneralPaymentRouteArgsInput
*/
export interface GeneralPaymentRouteArgsInput {
/**
* The list of all nodes in the route.
* @type {Array<GenericNodeInput>}
* @memberof GeneralPaymentRouteArgsInput
*/
allNodes: Array<GenericNodeInput>;
/**
* The ID of the entrypoint node. Must be present in the all_nodes list.
* @type {string}
* @memberof GeneralPaymentRouteArgsInput
*/
entrypointNodeId: string;
}
/**
* Check if a given object implements the GeneralPaymentRouteArgsInput interface.
*/
export declare function instanceOfGeneralPaymentRouteArgsInput(value: object): value is GeneralPaymentRouteArgsInput;
export declare function GeneralPaymentRouteArgsInputFromJSON(json: any): GeneralPaymentRouteArgsInput;
export declare function GeneralPaymentRouteArgsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeneralPaymentRouteArgsInput;
export declare function GeneralPaymentRouteArgsInputToJSON(json: any): GeneralPaymentRouteArgsInput;
export declare function GeneralPaymentRouteArgsInputToJSONTyped(value?: GeneralPaymentRouteArgsInput | null, ignoreDiscriminator?: boolean): any;