Class MetadataValuesSchemaItemRemoveCommand
Removes a list item from a FieldMultiTagbox field
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 MetadataValuesSchemaItemRemoveCommand : MetadataValuesChangeCommandBase
Properties
FieldNamespace
The field namespace.
Declaration
[JsonProperty("fieldNamespace", Required = Required.Always)]
[Required]
public string FieldNamespace { get; set; }
Property Value
string |
FieldPath
The path of the field relative to the Content or Layer schema values defined by the schemaId property.
(i.e. add a team (existing list item) to the work information of a person: fieldPath = "workInfo.teams", schemaId = "PersonLayer").
Declaration
[JsonProperty("fieldPath", Required = Required.Always)]
[Required]
public string FieldPath { get; set; }
Property Value
string |
ReferenceId
The ID of the list item to be removed.
Declaration
[JsonProperty("referenceId", Required = Required.Always)]
[Required]
public string ReferenceId { get; set; }
Property Value
string |
Methods
FromJson(string)
Declaration
public static MetadataValuesSchemaItemRemoveCommand FromJson(string data)
Parameters
string data |
Returns
MetadataValuesSchemaItemRemoveCommand |