Module Values.BatchRemoveChannelRoleFromAccessorsInputSource

Remove a role from multiple users or groups in a private re:Post channel.

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

    The unique ID of the private re:Post.

    *)
  2. channelId : ChannelId.t;
    (*

    The unique ID of the private re:Post channel.

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

    The users or groups identifiers to remove the role from.

    *)
  4. channelRole : ChannelRole.t;
    (*

    The channel role to remove from the users or groups.

    *)
}
Sourceval context_ : string
Sourceval make : spaceId:SpaceId.t -> channelId:ChannelId.t -> accessorIds:AccessorIdList.t -> channelRole:ChannelRole.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