Module Values.ClientInfoSource

Information about the client making API requests, used for compatibility checking.

Sourcetype nonrec t = {
  1. compatibilityVersion : Integer.t;
    (*

    The compatibility version of the client, used to ensure API compatibility.

    *)
  2. sdkVersion : NonBlankString.t option;
    (*

    The version of the SDK being used by the client.

    *)
}
Sourceval context_ : string
Sourceval make : ?sdkVersion:??? -> compatibilityVersion:Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonBlankString.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