/** * OpenAPI Petstore * This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. * */ import ApiClient from '../ApiClient'; /** * The EnumArrays model module. * @module model/EnumArrays * @version 1.0.0 */ export default class EnumArrays { /** * Constructs a new EnumArrays. * @alias module:model/EnumArrays * @class */ constructor() { } /** * Constructs a EnumArrays from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/EnumArrays} obj Optional instance to populate. * @return {module:model/EnumArrays} The populated EnumArrays instance. */ static constructFromObject(data, obj) { if (data) { obj = obj || new EnumArrays(); if (data.hasOwnProperty('just_symbol')) { obj['just_symbol'] = ApiClient.convertToType(data['just_symbol'], 'String'); } if (data.hasOwnProperty('array_enum')) { obj['array_enum'] = ApiClient.convertToType(data['array_enum'], ['String']); } } return obj; } /** * @member {module:model/EnumArrays.JustSymbolEnum} just_symbol */ just_symbol = undefined; /** * @member {Array.} array_enum */ array_enum = undefined; /** * Allowed values for the just_symbol property. * @enum {String} * @readonly */ static JustSymbolEnum = { /** * value: ">=" * @const */ "GREATER_THAN_OR_EQUAL_TO": ">=", /** * value: "$" * @const */ "DOLLAR": "$" }; /** * Allowed values for the arrayEnum property. * @enum {String} * @readonly */ static ArrayEnumEnum = { /** * value: "fish" * @const */ "fish": "fish", /** * value: "crab" * @const */ "crab": "crab" }; }