shortenerType property

String? shortenerType
getter/setter pair

Possible string values are:

  • "SHORTENER_TYPE_UNSPECIFIED"
  • "SHORTEN" : String is shortened to max_string_length.
  • "HASH" : String is replaced by its hex-string hash.
  • "SHORTEN_WITH_HASH" : String is replaced by a combination of string shortening and a hex-string hash.
  • "SHORTEN_EMAIL" : String shortening for email addresses. Shortening may be done on the user and/or domain portion of the email address.
  • "SHORTEN_EMAIL_WITH_HASH" : String is replaced by a combination of string shortening and a hex-string hash for an email address.
  • "SHORTEN_DOMAIN" : Shortens a domain name (e.g., as part of an email address or URL).

Implementation

core.String? shortenerType;