UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

28 lines (27 loc) 918 B
/** * 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 { SimpleDecisionNodeInput } from './SimpleDecisionNodeInput'; /** * @type Node * * @export */ export type Node = { nodeType: 'cascading_processors'; } & CascadingProcessorsNode | { nodeType: 'simple_decision'; } & SimpleDecisionNodeInput; export declare function NodeFromJSON(json: any): Node; export declare function NodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Node; export declare function NodeToJSON(json: any): any; export declare function NodeToJSONTyped(value?: Node | null, ignoreDiscriminator?: boolean): any;