UNPKG

@revxui/api-clients-ts

Version:

swagger client for @revxui/api-clients-ts

49 lines (48 loc) 1.31 kB
/** * Api Documentation * Api Documentation * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export interface JsonNode { array?: boolean; bigDecimal?: boolean; bigInteger?: boolean; binary?: boolean; _boolean?: boolean; containerNode?: boolean; _double?: boolean; _float?: boolean; floatingPointNumber?: boolean; _int?: boolean; integralNumber?: boolean; _long?: boolean; missingNode?: boolean; nodeType?: JsonNode.NodeTypeEnum; _null?: boolean; number?: boolean; object?: boolean; pojo?: boolean; _short?: boolean; textual?: boolean; valueNode?: boolean; } export declare namespace JsonNode { type NodeTypeEnum = 'ARRAY' | 'BINARY' | 'BOOLEAN' | 'MISSING' | 'NULL' | 'NUMBER' | 'OBJECT' | 'POJO' | 'STRING'; const NodeTypeEnum: { ARRAY: NodeTypeEnum; BINARY: NodeTypeEnum; BOOLEAN: NodeTypeEnum; MISSING: NodeTypeEnum; NULL: NodeTypeEnum; NUMBER: NodeTypeEnum; OBJECT: NodeTypeEnum; POJO: NodeTypeEnum; STRING: NodeTypeEnum; }; }