Module Values.ReferenceOutputSource

Reference information linking a task to external systems - for output without validation

Sourcetype nonrec t = {
  1. system : String_.t option;
    (*

    The name of the external system

    *)
  2. title : String_.t option;
    (*

    Optional title for the reference

    *)
  3. referenceId : String_.t option;
    (*

    The unique identifier in the external system

    *)
  4. referenceUrl : String_.t option;
    (*

    URL to access the reference in the external system

    *)
  5. associationId : String_.t option;
    (*

    Association identifier of the external system

    *)
}
Sourceval make : ?system:??? -> ?title:??? -> ?referenceId:??? -> ?referenceUrl:??? -> ?associationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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