Module Values_0.TaskTemplateDefaultFieldValueSource

Describes a default field and its corresponding value.

Sourcetype nonrec t = {
  1. id : TaskTemplateFieldIdentifier.t option;
    (*

    Identifier of a field.

    *)
  2. defaultValue : TaskTemplateFieldValue.t option;
    (*

    Default value for the field.

    *)
}
Sourceval make : ?id:??? -> ?defaultValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TaskTemplateFieldValue.t | `Structure of (string * [> `String of TaskTemplateFieldName.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