Module Values.EngagementMemberSummarySource

The EngagementMemberSummary provides a snapshot of essential information about participants in an AWS Partner Central Engagement. This compact data structure encapsulates key details of each member, facilitating efficient collaboration and management within the Engagement.

Sourcetype nonrec t = {
  1. companyName : MemberCompanyName.t option;
    (*

    The official name of the member's company or organization.

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

    The URL of the member company's website. This offers a way to find more information about the member organization and serves as an additional identifier.

    *)
}
Sourceval make : ?companyName:??? -> ?websiteUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MemberCompanyName.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