-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecognizeMultipartRequestWrapper.php
More file actions
55 lines (47 loc) · 1.53 KB
/
RecognizeMultipartRequestWrapper.php
File metadata and controls
55 lines (47 loc) · 1.53 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="RecognizeMultipartRequestWrapper.php">
* Copyright (c) 2026 Aspose Pty Ltd
* </copyright>
* --------------------------------------------------------------------------------------------------------------------
*/
declare(strict_types=1);
namespace Aspose\BarCode\Requests;
/**
* Request model for "recognizeMultipart" operation.
*/
class RecognizeMultipartRequestWrapper
{
/**
* Initializes a new instance of the RecognizeMultipartRequestWrapper class.
*
* @param \Aspose\BarCode\Model\DecodeBarcodeType $barcode_type
* @param \SplFileObject $file Barcode image file
* @param \Aspose\BarCode\Model\RecognitionMode $recognition_mode
* @param \Aspose\BarCode\Model\RecognitionImageKind $recognition_image_kind
*/
public function __construct($barcode_type, $file, $recognition_mode = null, $recognition_image_kind = null)
{
$this->barcode_type = $barcode_type;
$this->file = $file;
$this->recognition_mode = $recognition_mode;
$this->recognition_image_kind = $recognition_image_kind;
}
/**
* Gets or sets barcode_type
*/
public $barcode_type;
/**
* Barcode image file
*/
public $file;
/**
* Gets or sets recognition_mode
*/
public $recognition_mode;
/**
* Gets or sets recognition_image_kind
*/
public $recognition_image_kind;
}