Module Values.MasterSource

Contains information about the administrator account and invitation.

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

    The ID of the account used as the administrator account.

    *)
  2. invitationId : String_.t option;
    (*

    The value used to validate the administrator account to the member account.

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

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

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

    The timestamp when the invitation was sent.

    *)
}
Sourceval make : ?accountId:??? -> ?invitationId:??? -> ?relationshipStatus:??? -> ?invitedAt:??? -> 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