Module Values.RelatedItemUpdateContentSource

Represents the content of a related item to be updated. This is a union type that can contain either comment content or custom content.

Sourcetype nonrec t = {
  1. comment : CommentUpdateContent.t option;
  2. custom : CustomUpdateContent.t option;
}
Sourceval make : ?comment:??? -> ?custom:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) list ] list | `String of CommentBody.t ]) list ]) 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