Class ParameterUsageModel

java.lang.Object
net.avalara.avatax.rest.client.models.ParameterUsageModel

public class ParameterUsageModel extends Object
usage of system defined parameters.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Getter for attributeType The type of parameter as determined by its application, e.g.
    Getter for country The country for the parameter usage item.
    Getter for dataType The data type of the property.
    Getter for helpText Help text to be shown to the user when they are filling out this parameter.
    Getter for helpUrl A help url that provides more information about the parameter
    Getter for id The unique ID number of this property.
    Getter for label Label that helps the user to identify a parameter
    Getter for measurementType The unit of measurement type of the parameter
    Getter for name The name of the property.
    Getter for parameterId The id of the parameter.
    Getter for productCode Product code for the parameter usage item.
    Getter for region The state for the parameter usage item.
    Getter for systemId System Id for the parameter usage item
    Getter for taxTypeId tax type for the parameter usage item.
    Getter for values If the parameter is of enumeration data type, then this list will be populated with all of the possible enumeration values.
    void
    Setter for attributeType The type of parameter as determined by its application, e.g.
    void
    Setter for country The country for the parameter usage item.
    void
    Setter for dataType The data type of the property.
    void
    Setter for helpText Help text to be shown to the user when they are filling out this parameter.
    void
    Setter for helpUrl A help url that provides more information about the parameter
    void
    setId(Long value)
    Setter for id The unique ID number of this property.
    void
    Setter for label Label that helps the user to identify a parameter
    void
    Setter for measurementType The unit of measurement type of the parameter
    void
    setName(String value)
    Setter for name The name of the property.
    void
    Setter for parameterId The id of the parameter.
    void
    Setter for productCode Product code for the parameter usage item.
    void
    Setter for region The state for the parameter usage item.
    void
    Setter for systemId System Id for the parameter usage item
    void
    Setter for taxTypeId tax type for the parameter usage item.
    void
    Setter for values If the parameter is of enumeration data type, then this list will be populated with all of the possible enumeration values.
    Returns a JSON string representation of ParameterUsageModel

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ParameterUsageModel

      public ParameterUsageModel()
  • Method Details

    • getId

      public Long getId()
      Getter for id The unique ID number of this property.
    • setId

      public void setId(Long value)
      Setter for id The unique ID number of this property.
    • getParameterId

      public Long getParameterId()
      Getter for parameterId The id of the parameter.
    • setParameterId

      public void setParameterId(Long value)
      Setter for parameterId The id of the parameter.
    • getProductCode

      public String getProductCode()
      Getter for productCode Product code for the parameter usage item.
    • setProductCode

      public void setProductCode(String value)
      Setter for productCode Product code for the parameter usage item.
    • getCountry

      public String getCountry()
      Getter for country The country for the parameter usage item.
    • setCountry

      public void setCountry(String value)
      Setter for country The country for the parameter usage item.
    • getRegion

      public String getRegion()
      Getter for region The state for the parameter usage item.
    • setRegion

      public void setRegion(String value)
      Setter for region The state for the parameter usage item.
    • getSystemId

      public Integer getSystemId()
      Getter for systemId System Id for the parameter usage item
    • setSystemId

      public void setSystemId(Integer value)
      Setter for systemId System Id for the parameter usage item
    • getTaxTypeId

      public String getTaxTypeId()
      Getter for taxTypeId tax type for the parameter usage item.
    • setTaxTypeId

      public void setTaxTypeId(String value)
      Setter for taxTypeId tax type for the parameter usage item.
    • getAttributeType

      public String getAttributeType()
      Getter for attributeType The type of parameter as determined by its application, e.g. Product, Transaction, Calculated
    • setAttributeType

      public void setAttributeType(String value)
      Setter for attributeType The type of parameter as determined by its application, e.g. Product, Transaction, Calculated
    • getName

      public String getName()
      Getter for name The name of the property. To use this property, add a field on the `parameters` object of a [CreateTransaction](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Transactions/CreateTransaction/) call.
    • setName

      public void setName(String value)
      Setter for name The name of the property. To use this property, add a field on the `parameters` object of a [CreateTransaction](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Transactions/CreateTransaction/) call.
    • getDataType

      public String getDataType()
      Getter for dataType The data type of the property.
    • setDataType

      public void setDataType(String value)
      Setter for dataType The data type of the property.
    • getHelpText

      public String getHelpText()
      Getter for helpText Help text to be shown to the user when they are filling out this parameter. Help text may include HTML links to additional content with more information about a parameter.
    • setHelpText

      public void setHelpText(String value)
      Setter for helpText Help text to be shown to the user when they are filling out this parameter. Help text may include HTML links to additional content with more information about a parameter.
    • getLabel

      public String getLabel()
      Getter for label Label that helps the user to identify a parameter
    • setLabel

      public void setLabel(String value)
      Setter for label Label that helps the user to identify a parameter
    • getHelpUrl

      public String getHelpUrl()
      Getter for helpUrl A help url that provides more information about the parameter
    • setHelpUrl

      public void setHelpUrl(String value)
      Setter for helpUrl A help url that provides more information about the parameter
    • getValues

      public ArrayList<String> getValues()
      Getter for values If the parameter is of enumeration data type, then this list will be populated with all of the possible enumeration values.
    • setValues

      public void setValues(ArrayList<String> value)
      Setter for values If the parameter is of enumeration data type, then this list will be populated with all of the possible enumeration values.
    • getMeasurementType

      public String getMeasurementType()
      Getter for measurementType The unit of measurement type of the parameter
    • setMeasurementType

      public void setMeasurementType(String value)
      Setter for measurementType The unit of measurement type of the parameter
    • toString

      public String toString()
      Returns a JSON string representation of ParameterUsageModel
      Overrides:
      toString in class Object