-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecognizeRequestWrapper.php
More file actions
55 lines (47 loc) · 1.56 KB
/
RecognizeRequestWrapper.php
File metadata and controls
55 lines (47 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* --------------------------------------------------------------------------------------------------------------------
* <copyright company="Aspose" file="RecognizeRequestWrapper.php">
* Copyright (c) 2026 Aspose Pty Ltd
* </copyright>
* --------------------------------------------------------------------------------------------------------------------
*/
declare(strict_types=1);
namespace Aspose\BarCode\Requests;
/**
* Request model for "recognize" operation.
*/
class RecognizeRequestWrapper
{
/**
* Initializes a new instance of the RecognizeRequestWrapper class.
*
* @param \Aspose\BarCode\Model\DecodeBarcodeType $barcode_type Type of barcode to recognize
* @param string $file_url Url to barcode image
* @param \Aspose\BarCode\Model\RecognitionMode $recognition_mode Recognition mode
* @param \Aspose\BarCode\Model\RecognitionImageKind $recognition_image_kind Image kind for recognition
*/
public function __construct($barcode_type, $file_url, $recognition_mode = null, $recognition_image_kind = null)
{
$this->barcode_type = $barcode_type;
$this->file_url = $file_url;
$this->recognition_mode = $recognition_mode;
$this->recognition_image_kind = $recognition_image_kind;
}
/**
* Type of barcode to recognize
*/
public $barcode_type;
/**
* Url to barcode image
*/
public $file_url;
/**
* Recognition mode
*/
public $recognition_mode;
/**
* Image kind for recognition
*/
public $recognition_image_kind;
}