Module Values.MemberSource

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

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

    The member ID (user ID or bot ID).

    *)
  2. memberType : MemberType.t option;
    (*

    The member type.

    *)
  3. email : SensitiveString.t option;
    (*

    The member email address.

    *)
  4. fullName : SensitiveString.t option;
    (*

    The member name.

    *)
  5. accountId : NonEmptyString.t option;
    (*

    The Amazon Chime account ID.

    *)
}
Sourceval make : ?memberId:??? -> ?memberType:??? -> ?email:??? -> ?fullName:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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