Class ItemParameterModel
- java.lang.Object
-
- net.avalara.avatax.rest.client.models.ItemParameterModel
-
public class ItemParameterModel extends java.lang.ObjectRepresents a parameter associated with an item.
-
-
Constructor Summary
Constructors Constructor Description ItemParameterModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.LonggetId()Getter for id The id of the parameter.java.lang.LonggetItemId()Getter for itemId The item idjava.lang.StringgetName()Getter for name The parameter's name.java.lang.StringgetUnit()Getter for unit The unit of measurement code for the parameter.java.lang.StringgetValue()Getter for value The value for the parameter.voidsetId(java.lang.Long value)Setter for id The id of the parameter.voidsetItemId(java.lang.Long value)Setter for itemId The item idvoidsetName(java.lang.String value)Setter for name The parameter's name.voidsetUnit(java.lang.String value)Setter for unit The unit of measurement code for the parameter.voidsetValue(java.lang.String value)Setter for value The value for the parameter.java.lang.StringtoString()Returns a JSON string representation of ItemParameterModel
-
-
-
Method Detail
-
getId
public java.lang.Long getId()
Getter for id The id of the parameter.
-
setId
public void setId(java.lang.Long value)
Setter for id The id of the parameter.
-
getName
public java.lang.String getName()
Getter for name The parameter's name.
-
setName
public void setName(java.lang.String value)
Setter for name The parameter's name.
-
getValue
public java.lang.String getValue()
Getter for value The value for the parameter.
-
setValue
public void setValue(java.lang.String value)
Setter for value The value for the parameter.
-
getUnit
public java.lang.String getUnit()
Getter for unit The unit of measurement code for the parameter.
-
setUnit
public void setUnit(java.lang.String value)
Setter for unit The unit of measurement code for the parameter.
-
getItemId
public java.lang.Long getItemId()
Getter for itemId The item id
-
setItemId
public void setItemId(java.lang.Long value)
Setter for itemId The item id
-
toString
public java.lang.String toString()
Returns a JSON string representation of ItemParameterModel- Overrides:
toStringin classjava.lang.Object
-
-