Module Values_0.ReadClientCredentialsGrantDetailsSource

Read-only configuration details for OAuth2 client credentials grant flow, including client ID and token endpoint.

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

    The client identifier for the OAuth2 client credentials grant flow.

    *)
  2. tokenEndpoint : Endpoint.t option;
    (*

    The authorization server endpoint used to obtain access tokens via the client credentials grant flow.

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