Values.OAuthPropertiesSourceThe OAuth properties required for OAuth type authentication.
type nonrec t = {tokenUrl : TokenUrl.t;The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
*)authCodeUrl : AuthCodeUrl.t;The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
*)oAuthScopes : OAuthScopeList.t;The OAuth scopes required for OAuth type authentication.
*)}val make :
tokenUrl:TokenUrl.t ->
authCodeUrl:AuthCodeUrl.t ->
oAuthScopes:OAuthScopeList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of OAuthScope.t ] list
| `String of TokenUrl.t ])
list ]