Values.GetContactResponseSourceReturns a contact from a contact list.
type nonrec t = {contactListName : ContactListName.t option;The name of the contact list to which the contact belongs.
*)emailAddress : EmailAddress.t option;The contact's email address.
*)topicPreferences : TopicPreferenceList.t option;The contact's preference for being opted-in to or opted-out of a topic.>
*)topicDefaultPreferences : TopicPreferenceList.t option;The default topic preferences applied to the contact.
*)unsubscribeAll : UnsubscribeAll.t option;A boolean value status noting if the contact is unsubscribed from all contact list topics.
*)attributesData : AttributesData.t option;The attribute data attached to a contact.
*)createdTimestamp : Timestamp.t option;A timestamp noting when the contact was created.
*)lastUpdatedTimestamp : Timestamp.t option;A timestamp noting the last time the contact's information was updated.
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `NotFoundException of NotFoundException.t| `TooManyRequestsException of TooManyRequestsException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `BadRequestException of unit
| `NotFoundException of unit
| `TooManyRequestsException of unit
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `BadRequestException of unit
| `NotFoundException of unit
| `TooManyRequestsException of unit
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of UnsubscribeAll.t
| `List of
[> `Structure of
(string * [> `Enum of string | `String of TopicName.t ]) list ]
list
| `String of ContactListName.t
| `Timestamp of Timestamp.t ])
list ]