/** * Sparks OpenAPI * Generated documentation for the Logicdrop Sparks API and OpenAPI clients. Logicdrop Sparks lets users build rules, analyze data, and automate documents. Use it to make decisions faster, generate documents better, and learn from your data. ### Documentation - [User Documentation](https://docs.logicdrop.com) ### Modules - [Sparks Compute](https://docs.logicdrop.com/rules/introduction) - [Sparks Decision Tables](https://docs.logicdrop.com/rules/authoring-decision-tables) - [Sparks Documents](https://docs.logicdrop.com/documents/introduction) ### Clients - [OpenAPI Clients](https://docs.logicdrop.com/development/sample-clients) ### Security - [Authorizing API Requests](https://docs.logicdrop.com/development/authorization) * * The version of the OpenAPI document: v_VERSION_, build# _BUILD_ * Contact: support@logicdrop.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from "../api"; export class PropertyDefinition { /** * Name of the property */ 'name'?: string; /** * Data type */ 'type'?: PropertyDefinition.TypeEnum; /** * Default value */ 'value'?: string; /** * Is the property a key? */ 'key'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "type", "baseName": "type", "type": "PropertyDefinition.TypeEnum" }, { "name": "value", "baseName": "value", "type": "string" }, { "name": "key", "baseName": "key", "type": "boolean" } ]; static getAttributeTypeMap() { return PropertyDefinition.attributeTypeMap; } } export namespace PropertyDefinition { export enum TypeEnum { String = 'String', Integer = 'Integer', Double = 'Double', Set = 'Set', List = 'List', Map = 'Map' } }