Module Values.SecurityGroupSource

Represents a security group in a Wickr network, containing membership statistics, configuration, and all permission settings that apply to its members.

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

    The number of active user members currently in the security group.

    *)
  2. botMembers : Integer.t option;
    (*

    The number of bot members currently in the security group.

    *)
  3. activeDirectoryGuid : GenericString.t option;
    (*

    The GUID of the Active Directory group associated with this security group, if synchronized with LDAP.

    *)
  4. id : GenericString.t option;
    (*

    The unique identifier of the security group.

    *)
  5. isDefault : Boolean.t option;
    (*

    Indicates whether this is the default security group for the network. Each network has only one default group.

    *)
  6. name : GenericString.t option;
    (*

    The human-readable name of the security group.

    *)
  7. modified : Integer.t option;
    (*

    The timestamp when the security group was last modified, specified in epoch seconds.

    *)
  8. securityGroupSettings : SecurityGroupSettings.t option;
    (*

    The comprehensive configuration settings that define capabilities and restrictions for members of this security group.

    *)
}
Sourceval make : ?activeMembers:??? -> ?botMembers:??? -> ?activeDirectoryGuid:??? -> ?id:??? -> ?isDefault:??? -> ?name:??? -> ?modified:??? -> ?securityGroupSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of GenericString.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of GenericString.t | `Structure of (string * [> `String of GenericString.t ]) list ] list | `Long of Long.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t ]) list ]) list ]) 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