Class EntryModelOptions
Parameters for managing entries or entry versions.
Inherited Members
Namespace: Unity.Services.Ccd.Management
Assembly: Unity.Services.Ccd.Management.dll
Syntax
public class EntryModelOptions
Constructors
EntryModelOptions(string, string, long)
Create parameters for managing entries.
Declaration
public EntryModelOptions(string path, string contentHash, long contentSize)
Parameters
Type | Name | Description |
---|---|---|
string | path | Path of the entry. |
string | contentHash | Content hash of the entry. |
long | 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 long ContentSize { get; set; }
Property Value
Type | Description |
---|---|
long |
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 |
---|---|
bool |