Module Values_0.TaskTemplateConstraintsSource

Describes constraints that apply to the template fields.

Sourcetype nonrec t = {
  1. requiredFields : RequiredTaskTemplateFields.t option;
    (*

    Lists the fields that are required to be filled by agents.

    *)
  2. readOnlyFields : ReadOnlyTaskTemplateFields.t option;
    (*

    Lists the fields that are read-only to agents, and cannot be edited.

    *)
  3. invisibleFields : InvisibleTaskTemplateFields.t option;
    (*

    Lists the fields that are invisible to agents.

    *)
}
Sourceval make : ?requiredFields:??? -> ?readOnlyFields:??? -> ?invisibleFields:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `String of TaskTemplateFieldName.t ]) list ]) list ] 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