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