Module Values.NewUserAgentDetailSource

Details new user agents used either at the resource or account level.

Sourcetype nonrec t = {
  1. userAgent : UserAgent.t option;
    (*

    New user agent which accessed the resource.

    *)
  2. isNewForEntireAccount : IsNewForEntireAccount.t option;
    (*

    Checks if the user agent is new for the entire account.

    *)
}
Sourceval make : ?userAgent:??? -> ?isNewForEntireAccount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsNewForEntireAccount.t | `String of UserAgent.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