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, int)
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. |
| int | 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 |
|---|---|
| int |
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 |