Module Values_0.TaskTemplateFieldSource

Describes a single task template field.

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

    The unique identifier for the field.

    *)
  2. description : TaskTemplateFieldDescription.t option;
    (*

    The description of the field.

    *)
  3. type_ : TaskTemplateFieldType.t option;
    (*

    Indicates the type of field.

    *)
  4. singleSelectOptions : SingleSelectOptions.t option;
    (*

    A list of options for a single select field.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?type_:??? -> ?singleSelectOptions:??? -> id:TaskTemplateFieldIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of TaskTemplateSingleSelectOption.t ] list | `String of TaskTemplateFieldDescription.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