var clientThreadDeleteRequest = new ClientThreadDeleteRequest
{
Folder = "INBOX/SubFolder",
ThreadId = "5",
AccountLocation = new StorageFileLocation
{
FileName = "email.account",
Storage = "First Storage",
FolderPath = "file/location/folder/on/storage"
}
};
ClientThreadDeleteRequest clientThreadDeleteRequest = Models.clientThreadDeleteRequest()
.folder("INBOX/SubFolder")
.threadId("5")
.accountLocation(Models.storageFileLocation()
.fileName("email.account")
.storage("First Storage")
.folderPath("file/location/folder/on/storage")
.build())
.build();
client_thread_delete_request = models.ClientThreadDeleteRequest(
folder='INBOX/SubFolder',
thread_id='5',
account_location=models.StorageFileLocation(
file_name='email.account',
storage='First Storage',
folder_path='file/location/folder/on/storage'))
client_thread_delete_request = ClientThreadDeleteRequest.new(
folder: 'INBOX/SubFolder',
thread_id: '5',
account_location: StorageFileLocation.new(
file_name: 'email.account',
storage: 'First Storage',
folder_path: 'file/location/folder/on/storage'))
let clientThreadDeleteRequest = Models.clientThreadDeleteRequest()
.folder('INBOX/SubFolder')
.threadId('5')
.accountLocation(Models.storageFileLocation()
.fileName('email.account')
.storage('First Storage')
.folderPath('file/location/folder/on/storage')
.build())
.build();
$clientThreadDeleteRequest = Models::clientThreadDeleteRequest()
->folder('INBOX/SubFolder')
->threadId('5')
->accountLocation(Models::storageFileLocation()
->fileName('email.account')
->storage('First Storage')
->folderPath('file/location/folder/on/storage')
->build())
->build();