contentType property

String? contentType
getter/setter pair

The content type header to use for the check.

The following configurations result in errors: 1. Content type is specified in both the headers field and the content_type field. 2. Request method is GET and content_type is not TYPE_UNSPECIFIED 3. Request method is POST and content_type is TYPE_UNSPECIFIED. 4. Request method is POST and a "Content-Type" header is provided via headers field. The content_type field should be used instead. Possible string values are:

  • "TYPE_UNSPECIFIED" : No content type specified.
  • "URL_ENCODED" : body is in URL-encoded form. Equivalent to setting the Content-Type to application/x-www-form-urlencoded in the HTTP request.
  • "USER_PROVIDED" : body is in custom_content_type form. Equivalent to setting the Content-Type to the contents of custom_content_type in the HTTP request.

Implementation

core.String? contentType;