All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.avalara.avatax.rest.client.models.DeterminationFactorModel Maven / Gradle / Ivy

package net.avalara.avatax.rest.client.models;

import net.avalara.avatax.rest.client.enums.*;
import net.avalara.avatax.rest.client.serializer.JsonSerializer;

import java.lang.Override;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;

/*
 * AvaTax Software Development Kit for Java JRE based environments
 *
 * (c) 2004-2018 Avalara, Inc.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @author     Dustin Welden 
 * @copyright  2004-2018 Avalara, Inc.
 * @license    https://www.apache.org/licenses/LICENSE-2.0
 * @link       https://github.com/avadev/AvaTax-REST-V2-JRE-SDK
 * Swagger name: AvaTaxClient
 */

/**
 * This object represents a single determination factor for a line that is being inspected through the InspectLine API.
 */
public class DeterminationFactorModel {


    private String code;

    /**
     * Getter for code
     *
     * Determination reason code.
     */
    public String getCode() {
        return this.code;
    }

    /**
     * Setter for code
     *
     * Determination reason code.
     */
    public void setCode(String value) {
        this.code = value;
    }

    private String description;

    /**
     * Getter for description
     *
     * Determination reason description.
     */
    public String getDescription() {
        return this.description;
    }

    /**
     * Setter for description
     *
     * Determination reason description.
     */
    public void setDescription(String value) {
        this.description = value;
    }

    private ArrayList ids;

    /**
     * Getter for ids
     *
     * The ids of any applied determination factor.
     */
    public ArrayList getIds() {
        return this.ids;
    }

    /**
     * Setter for ids
     *
     * The ids of any applied determination factor.
     */
    public void setIds(ArrayList value) {
        this.ids = value;
    }

    private ArrayList names;

    /**
     * Getter for names
     *
     * The name of any applied determination factor.
     */
    public ArrayList getNames() {
        return this.names;
    }

    /**
     * Setter for names
     *
     * The name of any applied determination factor.
     */
    public void setNames(ArrayList value) {
        this.names = value;
    }

    private ArrayList createdBy;

    /**
     * Getter for createdBy
     *
     * The name of the user who created any applied determination factor.
     */
    public ArrayList getCreatedBy() {
        return this.createdBy;
    }

    /**
     * Setter for createdBy
     *
     * The name of the user who created any applied determination factor.
     */
    public void setCreatedBy(ArrayList value) {
        this.createdBy = value;
    }

    private String entityUseCode;

    /**
     * Getter for entityUseCode
     *
     * The determination factor entityUseCode.
     */
    public String getEntityUseCode() {
        return this.entityUseCode;
    }

    /**
     * Setter for entityUseCode
     *
     * The determination factor entityUseCode.
     */
    public void setEntityUseCode(String value) {
        this.entityUseCode = value;
    }

    private String exemptCertId;

    /**
     * Getter for exemptCertId
     *
     * The determination factor exemptCertId.
     */
    public String getExemptCertId() {
        return this.exemptCertId;
    }

    /**
     * Setter for exemptCertId
     *
     * The determination factor exemptCertId.
     */
    public void setExemptCertId(String value) {
        this.exemptCertId = value;
    }

    private String exemptNo;

    /**
     * Getter for exemptNo
     *
     * The determination factor exemptNo.
     */
    public String getExemptNo() {
        return this.exemptNo;
    }

    /**
     * Setter for exemptNo
     *
     * The determination factor exemptNo.
     */
    public void setExemptNo(String value) {
        this.exemptNo = value;
    }

    /**
     * Returns a JSON string representation of DeterminationFactorModel
     */
    @Override
    public String toString() {
        return JsonSerializer.SerializeObject(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy