Module Values.UpdateConnectionOAuthClientRequestParametersSource

The OAuth authorization parameters to use for the connection.

Sourcetype nonrec t = {
  1. clientID : AuthHeaderParameters.t option;
    (*

    The client ID to use for OAuth authorization.

    *)
  2. clientSecret : AuthHeaderParametersSensitive.t option;
    (*

    The client secret assciated with the client ID to use for OAuth authorization.

    *)
}
Sourceval make : ?clientID:??? -> ?clientSecret:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AuthHeaderParameters.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