var storageFile = new StorageFile
{
Name = "file.ext",
ModifiedDate = DateTime.Today,
Size = 4096,
Path = "/storage/path/to"
};
StorageFile storageFile = Models.storageFile()
.name("file.ext")
.modifiedDate(Calendar.getInstance().getTime())
.size(4096)
.path("/storage/path/to")
.build();
storage_file = models.StorageFile(
name='file.ext',
modified_date=datetime.today(),
size=4096,
path='/storage/path/to')
storage_file = StorageFile.new(
name: 'file.ext',
modified_date: DateTime.now,
size: 4096,
path: '/storage/path/to')
let storageFile = Models.storageFile()
.name('file.ext')
.modifiedDate(new Date())
.size(4096)
.path('/storage/path/to')
.build();
$storageFile = Models::storageFile()
->name('file.ext')
->modifiedDate(new DateTime())
->size(4096)
->path('/storage/path/to')
->build();