Class EntryModelOptions
Parameters for managing entries or entry versions.
Namespace: Unity.Services.Ccd.Management
Syntax
public class EntryModelOptions : object
Constructors
EntryModelOptions(String, String, Int32)
Create parameters for managing entries.
Declaration
public EntryModelOptions(string path, string contentHash, int contentSize)
Parameters
Type | Name | Description |
---|---|---|
String | path | Path of the entry. |
String | contentHash | Content hash of the entry. |
Int32 | contentSize | Content size of the entry. |
Properties
ContentHash
Content hash of the entry.
Declaration
public string ContentHash { get; set; }
Property Value
Type | Description |
---|---|
String |
ContentSize
Content size of the entry.
Declaration
public int ContentSize { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
ContentType
Content type of the entry.
Declaration
public string ContentType { get; set; }
Property Value
Type | Description |
---|---|
String |
Labels
Labels of the entry.
Declaration
public List<string> Labels { get; set; }
Property Value
Type | Description |
---|---|
List<String> |
Metadata
Metadata of the entry.
Declaration
public JsonObject Metadata { get; set; }
Property Value
Type | Description |
---|---|
JsonObject |
Path
Path of the entry.
Declaration
public string Path { get; set; }
Property Value
Type | Description |
---|---|
String |
UpdateIfExists
Update the entry if it exists.
Declaration
public bool UpdateIfExists { get; set; }
Property Value
Type | Description |
---|---|
Boolean |