Values.GetUsersCountResponseSourceRetrieves the count of users in a Wickr network, categorized by their status (pending, active, rejected) and showing how many users can still be added.
type nonrec t = {pending : Integer.t option;The number of users with pending status (invited but not yet accepted).
*)active : Integer.t option;The number of users with active status in the network.
*)rejected : Integer.t option;The number of users who have rejected network invitations.
*)remaining : Integer.t option;The number of additional users that can be added to the network while maintaining premium free trial eligibility.
*)total : Integer.t option;The total number of users in the network (active and pending combined).
*)}type nonrec error = [ | `BadRequestError of BadRequestError.t| `ForbiddenError of ForbiddenError.t| `InternalServerError of InternalServerError.t| `RateLimitError of RateLimitError.t| `ResourceNotFoundError of ResourceNotFoundError.t| `ValidationError of ValidationError.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestError of BadRequestError.t
| `ForbiddenError of ForbiddenError.t
| `InternalServerError of InternalServerError.t
| `RateLimitError of RateLimitError.t
| `ResourceNotFoundError of ResourceNotFoundError.t
| `UnauthorizedError of UnauthorizedError.t
| `Unknown_operation_error of string * string option
| `ValidationError of ValidationError.t ]