Class FieldDynamicView
Stores a filter template which can be used to query for related items
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class FieldDynamicView : FieldBase
Properties
FilterTemplate
Template to generate filter based on current item.
Declaration
[JsonProperty("filterTemplate", Required = Required.Always)]
[Required]
public FilterBase FilterTemplate { get; set; }
Property Value
Sort
Specifies sorting to be used in search with FilterBase> from FilterTemplate
Declaration
[JsonProperty("sort", Required = Required.Always)]
[Required]
public ICollection<SortInfo> Sort { get; set; }
Property Value
TargetDocType
Type of item this field points to. Restricted to Content at this time.
Declaration
[JsonProperty("targetDocType", Required = Required.Always)]
[Required]
public string TargetDocType { get; set; }
Property Value
ViewUiSettings
Settings for displaying purposes in the UI
Declaration
[JsonProperty("viewUiSettings", Required = Required.Always)]
public DynamicViewFieldUiSettings ViewUiSettings { get; set; }