net.avalara.avatax.rest.client.models.NoticeStatusModel 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
*/
/**
* Tax Notice Status Model
*/
public class NoticeStatusModel {
private Integer id;
/**
* Getter for id
*
* The unique ID number of this tax authority type.
*/
public Integer getId() {
return this.id;
}
/**
* Setter for id
*
* The unique ID number of this tax authority type.
*/
public void setId(Integer value) {
this.id = value;
}
private String description;
/**
* Getter for description
*
* The description name of this tax authority type.
*/
public String getDescription() {
return this.description;
}
/**
* Setter for description
*
* The description name of this tax authority type.
*/
public void setDescription(String value) {
this.description = value;
}
private Boolean isOpen;
/**
* Getter for isOpen
*
* True if a tax notice in this status is considered 'open' and has more work expected to be done before it is closed.
*/
public Boolean getIsOpen() {
return this.isOpen;
}
/**
* Setter for isOpen
*
* True if a tax notice in this status is considered 'open' and has more work expected to be done before it is closed.
*/
public void setIsOpen(Boolean value) {
this.isOpen = value;
}
private Integer sortOrder;
/**
* Getter for sortOrder
*
* If a list of status values is to be displayed in a dropdown, they should be displayed in this numeric order.
*/
public Integer getSortOrder() {
return this.sortOrder;
}
/**
* Setter for sortOrder
*
* If a list of status values is to be displayed in a dropdown, they should be displayed in this numeric order.
*/
public void setSortOrder(Integer value) {
this.sortOrder = value;
}
private Boolean activeFlag;
/**
* Getter for activeFlag
*
* The active Flag of this tax authority type.
*/
public Boolean getActiveFlag() {
return this.activeFlag;
}
/**
* Setter for activeFlag
*
* The active Flag of this tax authority type.
*/
public void setActiveFlag(Boolean value) {
this.activeFlag = value;
}
/**
* Returns a JSON string representation of NoticeStatusModel
*/
@Override
public String toString() {
return JsonSerializer.SerializeObject(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy