Interface IRequestFileDetails
File data structure with details for attachment request
Namespace: Unity.Cloud.Collaboration.Models.Abstractions
Assembly: Unity.Cloud.Collaboration.dll
Syntax
public interface IRequestFileDetails
Properties
ContentType
The file content type, MIME type if relevant.
Declaration
[DataMember(Name = "contentType", EmitDefaultValue = true)]
string ContentType { get; }
Property Value
| Type | Description |
|---|---|
| string |
FileSize
The file size.
Declaration
[DataMember(Name = "fileSize", EmitDefaultValue = true, IsRequired = true)]
long FileSize { get; }
Property Value
| Type | Description |
|---|---|
| long |
FileType
The file type.
Declaration
[DataMember(Name = "fileType", EmitDefaultValue = true)]
string FileType { get; }
Property Value
| Type | Description |
|---|---|
| string |