Values_0.AssociationStatusSourceDescribes an association status.
type nonrec t = {date : DateTime.t;The date when the status changed.
*)name : AssociationStatusName.t;The status.
*)message : StatusMessage.t;The reason for the status.
*)additionalInfo : StatusAdditionalInfo.t option;A user-defined string.
*)}val make :
?additionalInfo:??? ->
date:DateTime.t ->
name:AssociationStatusName.t ->
message:StatusMessage.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of StatusMessage.t
| `Timestamp of DateTime.t ])
list ]