Module Values.BatchAddRoleInputSource

Add a role to multiple users or groups in a private re:Post.

Sourcetype nonrec t = {
  1. spaceId : SpaceId.t;
    (*

    The unique ID of the private re:Post.

    *)
  2. accessorIds : AccessorIdList.t;
    (*

    The user or group accessor identifiers to add the role to.

    *)
  3. role : Role.t;
    (*

    The role to add to the users or groups.

    *)
}
Sourceval context_ : string
Sourceval make : spaceId:SpaceId.t -> accessorIds:AccessorIdList.t -> role:Role.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AccessorId.t ] list | `String of SpaceId.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