Class CcdEntryCreateByPath
CcdEntryCreateByPath model
Namespace: Unity.Services.Ccd.Management.Models
Syntax
[Preserve]
public class CcdEntryCreateByPath
Constructors
CcdEntryCreateByPath(String, Int32, String, List<String>, Object, Boolean)
Creates an instance of CcdEntryCreateByPath.
Declaration
[Preserve]
public CcdEntryCreateByPath(string contentHash = null, int contentSize = 0, string contentType = null, List<string> labels = null, object metadata = null, bool signedUrl = false)
Parameters
Type | Name | Description |
---|---|---|
String | contentHash | The "content_hash" should be MD5sum hash value. |
Int32 | contentSize | contentSize param |
String | contentType | contentType param |
List<String> | labels | labels param |
Object | metadata | metadata param |
Boolean | signedUrl | Set to 'true' if you want to return a signed URL for direct upload. Otherwise defaults to 'false'. |
Properties
ContentHash
The "content_hash" should be MD5sum hash value.
Declaration
[Preserve]
public string ContentHash { get; }
Property Value
Type | Description |
---|---|
String |
ContentSize
Declaration
[Preserve]
public int ContentSize { get; }
Property Value
Type | Description |
---|---|
Int32 |
ContentType
Declaration
[Preserve]
public string ContentType { get; }
Property Value
Type | Description |
---|---|
String |
Labels
Declaration
[Preserve]
public List<string> Labels { get; }
Property Value
Type | Description |
---|---|
List<String> |
Metadata
Declaration
[Preserve]
public JsonObject Metadata { get; }
Property Value
Type | Description |
---|---|
JsonObject |
SignedUrl
Set to 'true' if you want to return a signed URL for direct upload. Otherwise defaults to 'false'.
Declaration
[Preserve]
public bool SignedUrl { get; }
Property Value
Type | Description |
---|---|
Boolean |