requestType property
Represent how to pass parameters to fetch access token Possible string values are:
- "REQUEST_TYPE_UNSPECIFIED" : Unspecified request type
- "REQUEST_BODY" : To pass all the parameters in post body.
- "QUERY_PARAMETERS" : To pass all the parameters as a part of query parameter.
- "ENCODED_HEADER" : To pass client id and client secret as base 64 encoding of client_id:client_password and rest parameters in post body.
Implementation
core.String? requestType;