Class CustomFieldModel
- java.lang.Object
-
- net.avalara.avatax.rest.client.models.CustomFieldModel
-
public class CustomFieldModel extends java.lang.Object
A custom field provides extra information about a customer or certificate. Custom fields are provided to permit you to store additional information about an exemption certificate or customer. They are available to support additional use cases beyond that supported directly by Avalara's exemption certificate software. For more information about custom fields, see the [Avalara Help Center article about custom fields](https://help.avalara.com/0021_Avalara_CertCapture/All_About_CertCapture/Edit_or_Remove_Details_about_Customers).
-
-
Constructor Summary
Constructors Constructor Description CustomFieldModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Getter for name The name of the custom field.java.lang.String
getValue()
Getter for value The value of the custom field.void
setName(java.lang.String value)
Setter for name The name of the custom field.void
setValue(java.lang.String value)
Setter for value The value of the custom field.java.lang.String
toString()
Returns a JSON string representation of CustomFieldModel
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Getter for name The name of the custom field.
-
setName
public void setName(java.lang.String value)
Setter for name The name of the custom field.
-
getValue
public java.lang.String getValue()
Getter for value The value of the custom field.
-
setValue
public void setValue(java.lang.String value)
Setter for value The value of the custom field.
-
toString
public java.lang.String toString()
Returns a JSON string representation of CustomFieldModel- Overrides:
toString
in classjava.lang.Object
-
-