Module Values.UpdateConnectionOAuthRequestParametersSource

The OAuth request parameters to use for the connection.

Sourcetype nonrec t = {
  1. clientParameters : UpdateConnectionOAuthClientRequestParameters.t option;
    (*

    The client parameters to use for the connection when OAuth is specified as the authorization type.

    *)
  2. authorizationEndpoint : HttpsEndpoint.t option;
    (*

    The URL to the authorization endpoint when OAuth is specified as the authorization type.

    *)
  3. httpMethod : ConnectionOAuthHttpMethod.t option;
    (*

    The method used to connect to the HTTP endpoint.

    *)
  4. oAuthHttpParameters : ConnectionHttpParameters.t option;
    (*

    The additional HTTP parameters used for the OAuth authorization request.

    *)
}
Sourceval make : ?clientParameters:??? -> ?authorizationEndpoint:??? -> ?httpMethod:??? -> ?oAuthHttpParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HttpsEndpoint.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of HeaderKey.t ]) list ] list | `String of AuthHeaderParameters.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