Class MetadataValuesChangeRequestBase
Base class for the content metadata batch requests.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Syntax
[JsonConverter(typeof(JsonInheritanceConverter), new object[] { "kind" })]
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public abstract class MetadataValuesChangeRequestBase
Properties
AllowMissingDependencies
Allows updating contents with references to list items or contents that do not exist in the system.
Declaration
[JsonProperty("allowMissingDependencies", Required = Required.Always)]
public bool AllowMissingDependencies { get; set; }
Property Value
bool |
ChangeCommands
Changes that need to be applied to the existing content metadata. The same set of changes is applied to all contents.
Declaration
[JsonProperty("changeCommands", Required = Required.Always)]
[Required]
public ICollection<MetadataValuesChangeCommandBase> ChangeCommands { get; set; }
Property Value
ICollection<MetadataValuesChangeCommandBase> |
NotifyProgress
Create a progress notification and notify on progress. Notifications are shown in the UI only to the same use who triggered the batch update.
Declaration
[JsonProperty("notifyProgress", Required = Required.Always)]
public bool NotifyProgress { get; set; }
Property Value
bool |
Methods
FromJson(string)
Declaration
public static MetadataValuesChangeRequestBase FromJson(string data)
Parameters
string data |
Returns
MetadataValuesChangeRequestBase |