var aiBcrParseStorageRequest = new AiBcrParseStorageRequest
{
OutFolder = new StorageFolderLocation
{
Storage = "First Storage",
FolderPath = "VCard/files/produced/by/parser/will/be/placed/here"
},
Images = new List<AiBcrImageStorageFile>
{
new AiBcrImageStorageFile
{
File = new StorageFileLocation
{
FileName = "VCardScanImage.jpg",
Storage = "First Storage",
FolderPath = "image/location/on/storage"
},
IsSingle = true
}
}
};
AiBcrParseStorageRequest aiBcrParseStorageRequest = Models.aiBcrParseStorageRequest()
.outFolder(Models.storageFolderLocation()
.storage("First Storage")
.folderPath("VCard/files/produced/by/parser/will/be/placed/here")
.build())
.images(Arrays.<AiBcrImageStorageFile>asList(
Models.aiBcrImageStorageFile()
.file(Models.storageFileLocation()
.fileName("VCardScanImage.jpg")
.storage("First Storage")
.folderPath("image/location/on/storage")
.build())
.isSingle(true)
.build()))
.build();
ai_bcr_parse_storage_request = models.AiBcrParseStorageRequest(
out_folder=models.StorageFolderLocation(
storage='First Storage',
folder_path='VCard/files/produced/by/parser/will/be/placed/here'),
images=[
models.AiBcrImageStorageFile(
file=models.StorageFileLocation(
file_name='VCardScanImage.jpg',
storage='First Storage',
folder_path='image/location/on/storage'),
is_single=True)])
ai_bcr_parse_storage_request = AiBcrParseStorageRequest.new(
out_folder: StorageFolderLocation.new(
storage: 'First Storage',
folder_path: 'VCard/files/produced/by/parser/will/be/placed/here'),
images: [
AiBcrImageStorageFile.new(
file: StorageFileLocation.new(
file_name: 'VCardScanImage.jpg',
storage: 'First Storage',
folder_path: 'image/location/on/storage'),
is_single: true)])
let aiBcrParseStorageRequest = Models.aiBcrParseStorageRequest()
.outFolder(Models.storageFolderLocation()
.storage('First Storage')
.folderPath('VCard/files/produced/by/parser/will/be/placed/here')
.build())
.images([
Models.aiBcrImageStorageFile()
.file(Models.storageFileLocation()
.fileName('VCardScanImage.jpg')
.storage('First Storage')
.folderPath('image/location/on/storage')
.build())
.isSingle(true)
.build()])
.build();
$aiBcrParseStorageRequest = Models::aiBcrParseStorageRequest()
->outFolder(Models::storageFolderLocation()
->storage('First Storage')
->folderPath('VCard/files/produced/by/parser/will/be/placed/here')
->build())
->images(array(
Models::aiBcrImageStorageFile()
->file(Models::storageFileLocation()
->fileName('VCardScanImage.jpg')
->storage('First Storage')
->folderPath('image/location/on/storage')
->build())
->isSingle(true)
->build()))
->build();