Module Values.SendInvitesInputSource

Sends an invitation email to selected users and groups.

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

    The ID of the private re:Post.

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

    The array of identifiers for the users and groups.

    *)
  3. title : InviteTitle.t;
    (*

    The title of the invite.

    *)
  4. body : InviteBody.t;
    (*

    The body of the invite.

    *)
}
Sourceval context_ : string
Sourceval make : spaceId:SpaceId.t -> accessorIds:AccessorIdList.t -> title:InviteTitle.t -> body:InviteBody.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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