var clientThreadMoveRequest = new ClientThreadMoveRequest
{
    DestinationFolder = "INBOX/SubFolder",
    SourceFolder = "INBOX",
    ThreadId = "5",
    AccountLocation = new StorageFileLocation
    {
        FileName = "email.account",
        Storage = "First Storage",
        FolderPath = "file/location/folder/on/storage"
    }
};
ClientThreadMoveRequest clientThreadMoveRequest = Models.clientThreadMoveRequest()
    .destinationFolder("INBOX/SubFolder")
    .sourceFolder("INBOX")
    .threadId("5")
    .accountLocation(Models.storageFileLocation()
        .fileName("email.account")
        .storage("First Storage")
        .folderPath("file/location/folder/on/storage")
        .build())
    .build();
client_thread_move_request = models.ClientThreadMoveRequest(
    destination_folder='INBOX/SubFolder',
    source_folder='INBOX',
    thread_id='5',
    account_location=models.StorageFileLocation(
        file_name='email.account',
        storage='First Storage',
        folder_path='file/location/folder/on/storage'))
client_thread_move_request = ClientThreadMoveRequest.new(
  destination_folder: 'INBOX/SubFolder',
  source_folder: 'INBOX',
  thread_id: '5',
  account_location: StorageFileLocation.new(
    file_name: 'email.account',
    storage: 'First Storage',
    folder_path: 'file/location/folder/on/storage'))
let clientThreadMoveRequest = Models.clientThreadMoveRequest()
    .destinationFolder('INBOX/SubFolder')
    .sourceFolder('INBOX')
    .threadId('5')
    .accountLocation(Models.storageFileLocation()
        .fileName('email.account')
        .storage('First Storage')
        .folderPath('file/location/folder/on/storage')
        .build())
    .build();
$clientThreadMoveRequest = Models::clientThreadMoveRequest()
    ->destinationFolder('INBOX/SubFolder')
    ->sourceFolder('INBOX')
    ->threadId('5')
    ->accountLocation(Models::storageFileLocation()
        ->fileName('email.account')
        ->storage('First Storage')
        ->folderPath('file/location/folder/on/storage')
        ->build())
    ->build();