Module Values.GuestUserHistoryCountSource

Contains the count of guest users for a specific billing period, used for tracking historical guest user activity.

Sourcetype nonrec t = {
  1. month : GenericString.t option;
    (*

    The month and billing period in YYYY_MM format (e.g., '2024_01').

    *)
  2. count : GenericString.t option;
    (*

    The number of guest users who have communicated with your Wickr network during this billing period.

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