FileShareInformation
This class is used to send information about a requested file share.
Properties
{
"fileName": string,
"fileCheckSum": string,
"fileSize": long,
"multipleFiles": bool,
}| Property | Type | Description |
|---|---|---|
| fileName | string | The name of the file to be shared. |
| fileCheckSum | string | The checksum of the file to be shared. |
| fileSize | long | The size of the file to be shared. |
| multipleFiles | bool | A flag indicating if there are multiple files to be shared. |
Example
Sending a single file
{
"fileName": "file.txt",
"fileCheckSum": "1234567890",
"fileSize": 1234567890,
"multipleFiles": false
}Sending multiple files
{
"fileName": "",
"fileCheckSum": "1234567890",
"fileSize": 1234567890,
"multipleFiles": true
}