Source: models/VariationAttribute.js

/* * *  *  * *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */
/* Copyright (c) 2020 Mobify Research & Development Inc. All rights reserved. */
/* * *  *  * *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * */

/**
 * Shop API
 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
 *
 * OpenAPI spec version: 20.4
 *
 *
 * 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.
 *
 */


import ApiClient from '../ApiClient'
import VariationAttributeValue from './VariationAttributeValue'





/**
* The VariationAttribute model module.
* @module models/VariationAttribute
* @version 20.4
*/
export default class VariationAttribute {
    /**
    * Constructs a new <code>VariationAttribute</code>.
    * Document representing a variation attribute.
    * @alias module:models/VariationAttribute
    * @class
    * @param id {String} The id of the variation attribute.
    */

    constructor(id) {





        this.id = id


    }

    /**
    * Constructs a <code>VariationAttribute</code> from a plain JavaScript object, optionally creating a new instance.
    * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
    * @param {Object} data The plain JavaScript object bearing properties of interest.
    * @param {module:models/VariationAttribute} obj Optional instance to populate.
    * @return {module:models/VariationAttribute} The populated <code>VariationAttribute</code> instance.
    */
    static constructFromObject(data, obj) {
        if (data) {
            obj = obj || new VariationAttribute()





            if (data.hasOwnProperty('id')) {
                obj.id = ApiClient.convertToType(data.id, 'String')
            }
            if (data.hasOwnProperty('name')) {
                obj.name = ApiClient.convertToType(data.name, 'String')
            }
            if (data.hasOwnProperty('values')) {
                obj.values = ApiClient.convertToType(data.values, [VariationAttributeValue])
            }
        }
        return obj
    }

    /**
    * The id of the variation attribute.
    * @member {String} id
    */
    id = undefined;
    /**
    * The localized display name of the variation attribute.
    * @member {String} name
    */
    name = undefined;
    /**
    * The sorted array of variation values. This array can be empty.
    * @member {Array.<module:models/VariationAttributeValue>} values
    */
    values = undefined;








}