/** * 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 OperationResponse { /** * Action performed */ 'action'?: string; /** * Action status */ 'status'?: OperationResponse.StatusEnum; /** * Action message */ 'message'?: string; /** * Size (number of records, bytes, etc. */ 'size'?: number; /** * Action result */ 'result'?: object; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "action", "baseName": "action", "type": "string" }, { "name": "status", "baseName": "status", "type": "OperationResponse.StatusEnum" }, { "name": "message", "baseName": "message", "type": "string" }, { "name": "size", "baseName": "size", "type": "number" }, { "name": "result", "baseName": "result", "type": "object" } ]; static getAttributeTypeMap() { return OperationResponse.attributeTypeMap; } } export namespace OperationResponse { export enum StatusEnum { OK = 'OK', Created = 'Created', Accepted = 'Accepted', NoContent = 'No Content', ResetContent = 'Reset Content', PartialContent = 'Partial Content', MovedPermanently = 'Moved Permanently', Found = 'Found', SeeOther = 'See Other', NotModified = 'Not Modified', UseProxy = 'Use Proxy', TemporaryRedirect = 'Temporary Redirect', BadRequest = 'Bad Request', Unauthorized = 'Unauthorized', PaymentRequired = 'Payment Required', Forbidden = 'Forbidden', NotFound = 'Not Found', MethodNotAllowed = 'Method Not Allowed', NotAcceptable = 'Not Acceptable', ProxyAuthenticationRequired = 'Proxy Authentication Required', RequestTimeout = 'Request Timeout', Conflict = 'Conflict', Gone = 'Gone', LengthRequired = 'Length Required', PreconditionFailed = 'Precondition Failed', RequestEntityTooLarge = 'Request Entity Too Large', RequestURITooLong = 'Request-URI Too Long', UnsupportedMediaType = 'Unsupported Media Type', RequestedRangeNotSatisfiable = 'Requested Range Not Satisfiable', ExpectationFailed = 'Expectation Failed', PreconditionRequired = 'Precondition Required', TooManyRequests = 'Too Many Requests', RequestHeaderFieldsTooLarge = 'Request Header Fields Too Large', InternalServerError = 'Internal Server Error', NotImplemented = 'Not Implemented', BadGateway = 'Bad Gateway', ServiceUnavailable = 'Service Unavailable', GatewayTimeout = 'Gateway Timeout', HTTPVersionNotSupported = 'HTTP Version Not Supported', NetworkAuthenticationRequired = 'Network Authentication Required' } }