Module Values_1.JWTBearerPropertiesSource

JWT bearer token configuration that defines the properties needed for the JWT Bearer grant type flow.

Sourcetype nonrec t = {
  1. tokenUrl : Values_0.ConnectorProperty.t option;
    (*

    The token endpoint URL where the JWT bearer token will be exchanged for an access token.

    *)
  2. requestMethod : HTTPMethod.t option;
    (*

    The HTTP method to use when making JWT bearer token requests, typically POST.

    *)
  3. contentType : ContentType.t option;
    (*

    The content type to use for JWT bearer token requests, such as application/x-www-form-urlencoded or application/json.

    *)
  4. jwtToken : Values_0.ConnectorProperty.t option;
    (*

    The JWT token to be used in the bearer token grant flow for authentication.

    *)
  5. tokenUrlParameters : ConnectorPropertyList.t option;
    (*

    Additional parameters to include in token URL requests as key-value pairs.

    *)
}
Sourceval make : ?tokenUrl:??? -> ?requestMethod:??? -> ?contentType:??? -> ?jwtToken:??? -> ?tokenUrlParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string ]) list ] list | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string ]) 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