Class 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).
    • 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
      • Methods inherited from class java.lang.Object

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

      • CustomFieldModel

        public 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 class java.lang.Object