Class CustomField

java.lang.Object
com.broadleafcommerce.braintree.domain.CustomField
All Implemented Interfaces:
Serializable

public class CustomField extends Object implements Serializable
Custom fields which will be stored on the braintree server More details: Custom Fields
See Also:
  • Field Details

    • name

      public String name
      Name should be added to the admin console More details: Added Custom Field
    • value

      public String value
      Fields and values must be formatted as strings or integers. Maximum 255 characters.
  • Constructor Details

    • CustomField

      public CustomField()
    • CustomField

      public CustomField(String name, String value)
  • Method Details

    • setName

      public void setName(String name)
      Name should be added to the admin console More details: Added Custom Field
    • setValue

      public void setValue(String value)
      Fields and values must be formatted as strings or integers. Maximum 255 characters.
    • getName

      public String getName()
      Name should be added to the admin console More details: Added Custom Field
    • getValue

      public String getValue()
      Fields and values must be formatted as strings or integers. Maximum 255 characters.