Values.EngagementSummarySourceAn object that contains an Engagement's subset of fields.
type nonrec t = {arn : EngagementArn.t option;The Amazon Resource Name (ARN) of the created Engagement.
*)id : EngagementIdentifier.t option;The unique identifier for the Engagement.
*)title : EngagementTitle.t option;The title of the Engagement.
*)createdAt : DateTime.t option;The date and time when the Engagement was created.
*)createdBy : AwsAccount.t option;The AWS Account ID of the Engagement creator.
*)memberCount : Integer.t option;The number of members in the Engagement.
*)modifiedAt : DateTime.t option;The timestamp indicating when the engagement was last modified, in ISO 8601 format (UTC). Example: "2023-05-01T20:37:46Z".
*)modifiedBy : AwsAccount.t option;The AWS account ID of the user who last modified the engagement. This field helps track who made the most recent changes to the engagement.
*)contextTypes : EngagementContextTypeList.t option;An array of context types associated with the engagement, such as "CustomerProject" or "Lead". This provides a quick overview of the types of contexts included in the engagement.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of Integer.t
| `List of [> `Enum of string ] list
| `String of EngagementArn.t
| `Timestamp of DateTime.t ])
list ]