var aiBcrImageStorageFile = new AiBcrImageStorageFile
{
File = new StorageFileLocation
{
FileName = "VCardScanImage.jpg",
Storage = "First Storage",
FolderPath = "image/location/on/storage"
},
IsSingle = true
};
AiBcrImageStorageFile aiBcrImageStorageFile = Models.aiBcrImageStorageFile()
.file(Models.storageFileLocation()
.fileName("VCardScanImage.jpg")
.storage("First Storage")
.folderPath("image/location/on/storage")
.build())
.isSingle(true)
.build();
ai_bcr_image_storage_file = models.AiBcrImageStorageFile(
file=models.StorageFileLocation(
file_name='VCardScanImage.jpg',
storage='First Storage',
folder_path='image/location/on/storage'),
is_single=True)
ai_bcr_image_storage_file = AiBcrImageStorageFile.new(
file: StorageFileLocation.new(
file_name: 'VCardScanImage.jpg',
storage: 'First Storage',
folder_path: 'image/location/on/storage'),
is_single: true)
let aiBcrImageStorageFile = Models.aiBcrImageStorageFile()
.file(Models.storageFileLocation()
.fileName('VCardScanImage.jpg')
.storage('First Storage')
.folderPath('image/location/on/storage')
.build())
.isSingle(true)
.build();
$aiBcrImageStorageFile = Models::aiBcrImageStorageFile()
->file(Models::storageFileLocation()
->fileName('VCardScanImage.jpg')
->storage('First Storage')
->folderPath('image/location/on/storage')
->build())
->isSingle(true)
->build();