@getopenpay/client
Version:
OpenPay API TypeScript SDK
28 lines (27 loc) • 930 B
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 { CascadingProcessorsNode } from './CascadingProcessorsNode';
import type { SimpleDecisionNodeOutput } from './SimpleDecisionNodeOutput';
/**
* @type Node1
*
* @export
*/
export type Node1 = {
nodeType: 'cascading_processors';
} & CascadingProcessorsNode | {
nodeType: 'simple_decision';
} & SimpleDecisionNodeOutput;
export declare function Node1FromJSON(json: any): Node1;
export declare function Node1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Node1;
export declare function Node1ToJSON(json: any): any;
export declare function Node1ToJSONTyped(value?: Node1 | null, ignoreDiscriminator?: boolean): any;