package pwc.taxtech.atms.dto.arearegion;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public class AreaRegionInfo {

    private String ID;
    
    //The name of the area.
    private String name;
    
    @JsonProperty("parentId")
    private String parentID;
    
    //The city list
    private List<CityInfo> cityList;
    
    private Boolean isActive;

    /**
     * @return the id
     */
    public String getID() {
        return ID;
    }

    /**
     * @param id the id to set
     */
    public void setID(String ID) {
        this.ID = ID;
    }

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the parentId
     */
    public String getParentId() {
        return parentID;
    }

    /**
     * @param parentId the parentId to set
     */
    public void setParentId(String parentId) {
        this.parentID = parentId;
    }

    /**
     * @return the cityList
     */
    public List<CityInfo> getCityList() {
        return cityList;
    }

    /**
     * @param cityList the cityList to set
     */
    public void setCityList(List<CityInfo> cityList) {
        this.cityList = cityList;
    }

    /**
     * @return the isActive
     */
    public Boolean getIsActive() {
        return isActive;
    }

    /**
     * @param isActive the isActive to set
     */
    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }
    
    
}