UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

34 lines (33 loc) 1.09 kB
/** * 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 { Node1 } from './Node1'; /** * * @export * @interface GenericNodeOutput */ export interface GenericNodeOutput { /** * * @type {Node1} * @memberof GenericNodeOutput */ node: Node1; } /** * Check if a given object implements the GenericNodeOutput interface. */ export declare function instanceOfGenericNodeOutput(value: object): value is GenericNodeOutput; export declare function GenericNodeOutputFromJSON(json: any): GenericNodeOutput; export declare function GenericNodeOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericNodeOutput; export declare function GenericNodeOutputToJSON(json: any): GenericNodeOutput; export declare function GenericNodeOutputToJSONTyped(value?: GenericNodeOutput | null, ignoreDiscriminator?: boolean): any;