Module Values.InvitationSource

Contains information about the invitation to become a member account.

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

    The ID of the account that the invitation was sent from.

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

    The ID of the invitation. This value is used to validate the inviter account to the member account.

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

    The status of the relationship between the inviter and invitee 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