Module Values.Oauth2CredentialSource

Contains OAuth2 client credential information.

Sourcetype nonrec t = {
  1. clientId : String2048.t;
    (*

    The client ID of the client application.

    *)
  2. clientSecret : SensitiveString2048.t;
    (*

    The client secret of the client application.

    *)
}
Sourceval context_ : string
Sourceval make : clientId:String2048.t -> clientSecret:SensitiveString2048.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String2048.t ]) 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