Module Values.MemberSource

Contains information about the member account.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The ID of the member account.

    *)
  2. detectorId : DetectorId.t option;
    (*

    The detector ID of the member account.

    *)
  3. masterId : String_.t option;
    (*

    The administrator account ID.

    *)
  4. email : Email.t option;
    (*

    The email address of the member account.

    *)
  5. relationshipStatus : String_.t option;
    (*

    The status of the relationship between the member and the administrator.

    *)
  6. invitedAt : String_.t option;
    (*

    The timestamp when the invitation was sent.

    *)
  7. updatedAt : String_.t option;
    (*

    The last-updated timestamp of the member.

    *)
  8. administratorId : String_.t option;
    (*

    The administrator account ID.

    *)
}
Sourceval make : ?accountId:??? -> ?detectorId:??? -> ?masterId:??? -> ?email:??? -> ?relationshipStatus:??? -> ?invitedAt:??? -> ?updatedAt:??? -> ?administratorId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.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