Module Values.RoomMembershipSource

The room membership details.

Sourcetype nonrec t = {
  1. roomId : NonEmptyString.t option;
    (*

    The room ID.

    *)
  2. member : Member.t option;
    (*

    The member details, such as email address, name, member ID, and member type.

    *)
  3. role : RoomMembershipRole.t option;
    (*

    The membership role.

    *)
  4. invitedBy : NonEmptyString.t option;
    (*

    The identifier of the user that invited the room member.

    *)
  5. updatedTimestamp : Iso8601Timestamp.t option;
    (*

    The room membership update timestamp, in ISO 8601 format.

    *)
}
Sourceval make : ?roomId:??? -> ?member:??? -> ?role:??? -> ?invitedBy:??? -> ?updatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list | `Timestamp of Iso8601Timestamp.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