Values.OAuth2PropertiesSourceThe OAuth 2.0 properties required for OAuth 2.0 authentication.
type nonrec t = {tokenUrl : TokenUrl.t;The token URL required for OAuth 2.0 authentication.
*)oAuth2GrantType : OAuth2GrantType.t;The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
*)tokenUrlCustomProperties : TokenUrlCustomProperties.t option;Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.
*)}val make :
?tokenUrlCustomProperties:??? ->
tokenUrl:TokenUrl.t ->
oAuth2GrantType:OAuth2GrantType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of CustomPropertyKey.t ]
* [> `String of CustomPropertyValue.t ])
list
| `String of TokenUrl.t ])
list ]