Source: models/CustomerPaymentInstrument.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 PaymentBankAccount from './PaymentBankAccount'
import PaymentCard from './PaymentCard'





/**
* The CustomerPaymentInstrument model module.
* @module models/CustomerPaymentInstrument
* @version 20.4
*/
export default class CustomerPaymentInstrument {
    /**
    * Constructs a new <code>CustomerPaymentInstrument</code>.
    * Document representing a customer payment instrument.
    * @alias module:models/CustomerPaymentInstrument
    * @class
    */

    constructor() {








    }

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





            if (data.hasOwnProperty('bank_routing_number')) {
                obj.bank_routing_number = ApiClient.convertToType(data.bank_routing_number, 'String')
            }
            if (data.hasOwnProperty('creation_date')) {
                obj.creation_date = ApiClient.convertToType(data.creation_date, 'Date')
            }
            if (data.hasOwnProperty('last_modified')) {
                obj.last_modified = ApiClient.convertToType(data.last_modified, 'Date')
            }
            if (data.hasOwnProperty('masked_gift_certificate_code')) {
                obj.masked_gift_certificate_code = ApiClient.convertToType(data.masked_gift_certificate_code, 'String')
            }
            if (data.hasOwnProperty('payment_bank_account')) {
                obj.payment_bank_account = PaymentBankAccount.constructFromObject(data.payment_bank_account)
            }
            if (data.hasOwnProperty('payment_card')) {
                obj.payment_card = PaymentCard.constructFromObject(data.payment_card)
            }
            if (data.hasOwnProperty('payment_instrument_id')) {
                obj.payment_instrument_id = ApiClient.convertToType(data.payment_instrument_id, 'String')
            }
            if (data.hasOwnProperty('payment_method_id')) {
                obj.payment_method_id = ApiClient.convertToType(data.payment_method_id, 'String')
            }
        }
        return obj
    }

    /**
    * The bank routing number.
    * @member {String} bank_routing_number
    */
    bank_routing_number = undefined;
    /**
    * Returns the value of attribute 'creationDate'.
    * @member {Date} creation_date
    */
    creation_date = undefined;
    /**
    * Returns the value of attribute 'lastModified'.
    * @member {Date} last_modified
    */
    last_modified = undefined;
    /**
    * The masked gift certificate code.
    * @member {String} masked_gift_certificate_code
    */
    masked_gift_certificate_code = undefined;
    /**
    * The payment bank account.
    * @member {module:models/PaymentBankAccount} payment_bank_account
    */
    payment_bank_account = undefined;
    /**
    * The payment card.
    * @member {module:models/PaymentCard} payment_card
    */
    payment_card = undefined;
    /**
    * The payment instrument ID.
    * @member {String} payment_instrument_id
    */
    payment_instrument_id = undefined;
    /**
    * The payment method id. Optional if a customer payment instrument id is specified.
    * @member {String} payment_method_id
    */
    payment_method_id = undefined;








}