Values.AssigneeContactSourceRepresents the contact details of the individual assigned to manage the opportunity within the partner organization. This helps to ensure that there is a point of contact for the opportunity's progress.
type nonrec t = {email : Email.t;Provides the email address of the assignee. This email is used for communications and notifications related to the opportunity.
*)firstName : AssigneeContactFirstNameString.t;Specifies the first name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.
*)lastName : AssigneeContactLastNameString.t;Specifies the last name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.
*)phone : PhoneNumber.t option;Specifies the contact phone number of the assignee responsible for the opportunity or engagement. This field enables direct communication for time-sensitive matters and facilitates coordination between AWS and partner teams.
*)businessTitle : JobTitle.t;Specifies the business title of the assignee managing the opportunity. This helps clarify the individual's role and responsibilities within the organization. Use the value PartnerAccountManager to update details of the opportunity owner.
*)}val make :
?phone:??? ->
email:Email.t ->
firstName:AssigneeContactFirstNameString.t ->
lastName:AssigneeContactLastNameString.t ->
businessTitle:JobTitle.t ->
unit ->
t