Module Values.ReferenceInputSource

Reference information linking a task to external systems - for input with validation

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

    The name of the external system

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

    Optional title for the reference

    *)
  3. referenceId : ResourceId.t;
    (*

    The unique identifier in the external system

    *)
  4. referenceUrl : ReferenceInputReferenceUrlString.t;
    (*

    URL to access the reference in the external system

    *)
  5. associationId : ResourceId.t;
    (*

    Association identifier of the external system

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