Interface EmailField.Builder

All Superinterfaces:
Buildable, CopyableBuilder<EmailField.Builder,EmailField>, SdkBuilder<EmailField.Builder,EmailField>, SdkPojo
Enclosing class:
EmailField

public static interface EmailField.Builder extends SdkPojo, CopyableBuilder<EmailField.Builder,EmailField>
  • Method Details

    • identifier

      EmailField.Builder identifier(String identifier)

      The name of the email field.

      How you specify this depends on the request inspection payload type.

      • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

        For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

      • For form encoded payload types, use the HTML form names.

        For example, for an HTML form with the input element named email1, the email field specification is email1.

      Parameters:
      identifier - The name of the email field.

      How you specify this depends on the request inspection payload type.

      • For JSON payloads, specify the field name in JSON pointer syntax. For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer.

        For example, for the JSON payload { "form": { "email": "THE_EMAIL" } }, the email field specification is /form/email.

      • For form encoded payload types, use the HTML form names.

        For example, for an HTML form with the input element named email1, the email field specification is email1.

      Returns:
      Returns a reference to this object so that method calls can be chained together.