Module Values_0.AssociationStatusSource

Describes an association status.

Sourcetype nonrec t = {
  1. date : DateTime.t;
    (*

    The date when the status changed.

    *)
  2. name : AssociationStatusName.t;
    (*

    The status.

    *)
  3. message : StatusMessage.t;
    (*

    The reason for the status.

    *)
  4. additionalInfo : StatusAdditionalInfo.t option;
    (*

    A user-defined string.

    *)
}
Sourceval context_ : string
Sourceval make : ?additionalInfo:??? -> date:DateTime.t -> name:AssociationStatusName.t -> message:StatusMessage.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StatusMessage.t | `Timestamp of DateTime.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