Values.RoomMembershipSourceThe room membership details.
type nonrec t = {roomId : NonEmptyString.t option;The room ID.
*)member : Member.t option;The member details, such as email address, name, member ID, and member type.
*)role : RoomMembershipRole.t option;The membership role.
*)invitedBy : NonEmptyString.t option;The identifier of the user that invited the room member.
*)updatedTimestamp : Iso8601Timestamp.t option;The room membership update timestamp, in ISO 8601 format.
*)}val 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 ]