restrictionType property

String? restrictionType
getter/setter pair

The restriction type for the specified URL. Possible string values are:

  • "RESTRICTION_TYPE_UNSPECIFIED" : Default value that should never be used.
  • "CONTAINS" : The tag URL (as recorded by the pixel callback) contains the specified URL.
  • "EQUALS" : The tag URL (as recorded by the pixel callback) exactly matches the specified URL.
  • "STARTS_WITH" : The tag URL (as recorded by the pixel callback) starts with the specified URL.
  • "ENDS_WITH" : The tag URL (as recorded by the pixel callback) ends with the specified URL.
  • "DOES_NOT_EQUAL" : The tag URL (as recorded by the pixel callback) does not equal the specified URL.
  • "DOES_NOT_CONTAIN" : The tag URL (as recorded by the pixel callback) does not contain the specified URL.
  • "DOES_NOT_START_WITH" : The tag URL (as recorded by the pixel callback) does not start with the specified URL.
  • "DOES_NOT_END_WITH" : The tag URL (as recorded by the pixel callback) does not end with the specified URL.

Implementation

core.String? restrictionType;