Source: models/LanguageOCC.js

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

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

/**
* The LanguageOCC model module.
* @module models/LanguageOCC
* @version v2
*/
export default class LanguageOCC {
    /**
    * Constructs a new <code>LanguageOCC</code>.
    * @alias module:models/LanguageOCC
    * @class
    */

    constructor() {
        /**
    *
    * @member {String} isocode
    */
        this.isocode = undefined
        /**
    *
    * @member {String} name
    */
        this.name = undefined
        /**
    *
    * @member {String} nativeName
    */
        this.nativeName = undefined
        /**
    *
    * @member {Boolean} active
    */
        this.active = undefined
    }

    /**
    * Constructs a <code>LanguageOCC</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/LanguageOCC} obj Optional instance to populate.
    * @return {module:models/LanguageOCC} The populated
    * <code>LanguageOCC</code> instance.
    */
    static constructFromObject(data, obj) {
        if (data) {
            obj = obj || new LanguageOCC()

            if (data.hasOwnProperty('isocode')) {
                obj.isocode = ApiClient.convertToType(data.isocode, 'String')
            }
            if (data.hasOwnProperty('name')) {
                obj.name = ApiClient.convertToType(data.name, 'String')
            }
            if (data.hasOwnProperty('nativeName')) {
                obj.nativeName = ApiClient.convertToType(data.nativeName, 'String')
            }
            if (data.hasOwnProperty('active')) {
                obj.active = ApiClient.convertToType(data.active, 'Boolean')
            }
        }
        return obj
    }

}