/** * 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 Project { 'id'?: string; 'name'?: string; 'client'?: string; 'artifact'?: string; 'version'?: string; 'url'?: string; 'description'?: string; 'created'?: Date; 'modified'?: Date; 'tags'?: Array; 'properties'?: { [key: string]: object; }; 'user'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "name", "baseName": "name", "type": "string" }, { "name": "client", "baseName": "client", "type": "string" }, { "name": "artifact", "baseName": "artifact", "type": "string" }, { "name": "version", "baseName": "version", "type": "string" }, { "name": "url", "baseName": "url", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "created", "baseName": "created", "type": "Date" }, { "name": "modified", "baseName": "modified", "type": "Date" }, { "name": "tags", "baseName": "tags", "type": "Array" }, { "name": "properties", "baseName": "properties", "type": "{ [key: string]: object; }" }, { "name": "user", "baseName": "user", "type": "string" } ]; static getAttributeTypeMap() { return Project.attributeTypeMap; } }