Module Values.OAuth2PropertiesSource

The OAuth2 properties.

Sourcetype nonrec t = {
  1. oAuth2GrantType : OAuth2GrantType.t option;
    (*

    The OAuth2 grant type of the OAuth2 properties.

    *)
  2. oAuth2ClientApplication : OAuth2ClientApplication.t option;
    (*

    The OAuth2 client application of the OAuth2 properties.

    *)
  3. tokenUrl : OAuth2PropertiesTokenUrlString.t option;
    (*

    The OAuth2 token URL of the OAuth2 properties.

    *)
  4. tokenUrlParametersMap : TokenUrlParametersMap.t option;
    (*

    The OAuth2 token URL parameter map of the OAuth2 properties.

    *)
  5. authorizationCodeProperties : AuthorizationCodeProperties.t option;
    (*

    The authorization code properties of the OAuth2 properties.

    *)
  6. oAuth2Credentials : GlueOAuth2Credentials.t option;
    (*

    The OAuth2 credentials of the OAuth2 properties.

    *)
}
Sourceval make : ?oAuth2GrantType:??? -> ?oAuth2ClientApplication:??? -> ?tokenUrl:??? -> ?tokenUrlParametersMap:??? -> ?authorizationCodeProperties:??? -> ?oAuth2Credentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TokenUrlParametersMapKeyString.t ] * [> `String of TokenUrlParametersMapValueString.t ]) list | `String of OAuth2PropertiesTokenUrlString.t | `Structure of (string * [> `String of OAuth2ClientApplicationUserManagedClientApplicationClientIdString.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t