Code Duplication    Length = 95-95 lines in 12 locations

src/SoapTypes/GenerateExtraImageLabelResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GenerateExtraImageLabelResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var labelType
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var labelType         $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return labelType
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param labelType $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GenerateExtraPdfLabelResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GenerateExtraPdfLabelResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param base64Binary $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GenerateImageLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GenerateImageLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var labelType
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var labelType         $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return labelType
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param labelType $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GenerateLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GenerateLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $labels = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $labels
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $labels
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $labels, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->labels = $labels;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabels()
76
    {
77
        return $this->labels;
78
    }
79
80
    /**
81
     * @param base64Binary $labels
82
     *
83
     * @return $this
84
     */
85
    public function setLabels($labels)
86
    {
87
        $this->labels = $labels;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GeneratePdfLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GeneratePdfLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $labels = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $labels
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $labels
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $labels, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->labels = $labels;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabels()
76
    {
77
        return $this->labels;
78
    }
79
80
    /**
81
     * @param base64Binary $labels
82
     *
83
     * @return $this
84
     */
85
    public function setLabels($labels)
86
    {
87
        $this->labels = $labels;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GenerateZplLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GenerateZplLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $labels = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $labels
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $labels
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $labels, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->labels = $labels;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabels()
76
    {
77
        return $this->labels;
78
    }
79
80
    /**
81
     * @param base64Binary $labels
82
     *
83
     * @return $this
84
     */
85
    public function setLabels($labels)
86
    {
87
        $this->labels = $labels;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingImageLabelResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingImageLabelResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var labelType
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var labelType         $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return labelType
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param labelType $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingImageLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingImageLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var labelType
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var labelType         $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return labelType
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param labelType $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingPdfLabelResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingPdfLabelResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param base64Binary $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingPdfLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingPdfLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $labels = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $labels
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $labels
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $labels, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->labels = $labels;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabels()
76
    {
77
        return $this->labels;
78
    }
79
80
    /**
81
     * @param base64Binary $labels
82
     *
83
     * @return $this
84
     */
85
    public function setLabels($labels)
86
    {
87
        $this->labels = $labels;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingZplLabelResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingZplLabelResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $label = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $label
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $label
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $label, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->label = $label;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabel()
76
    {
77
        return $this->label;
78
    }
79
80
    /**
81
     * @param base64Binary $label
82
     *
83
     * @return $this
84
     */
85
    public function setLabel($label)
86
    {
87
        $this->label = $label;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112

src/SoapTypes/GetExistingZplLabelsResponse.php 1 location

@@ 17-111 (lines=95) @@
14
15
use Etrias\PaazlConnector\Result\PaazlResultInterface;
16
17
class GetExistingZplLabelsResponse implements PaazlResultInterface
18
{
19
    /**
20
     * @var errorType
21
     */
22
    protected $error = null;
23
24
    /**
25
     * @var base64Binary
26
     */
27
    protected $labels = null;
28
29
    /**
30
     * @var labelMetaDataType
31
     */
32
    protected $metaData = null;
33
34
    /**
35
     * Constructor.
36
     *
37
     * @var errorType
38
     * @var base64Binary      $labels
39
     * @var labelMetaDataType $metaData
40
     *
41
     * @param mixed $error
42
     * @param mixed $labels
43
     * @param mixed $metaData
44
     */
45
    public function __construct($error, $labels, $metaData)
46
    {
47
        $this->error = $error;
48
        $this->labels = $labels;
49
        $this->metaData = $metaData;
50
    }
51
52
    /**
53
     * @return errorType
54
     */
55
    public function getError()
56
    {
57
        return $this->error;
58
    }
59
60
    /**
61
     * @param errorType $error
62
     *
63
     * @return $this
64
     */
65
    public function setError($error)
66
    {
67
        $this->error = $error;
68
69
        return $this;
70
    }
71
72
    /**
73
     * @return base64Binary
74
     */
75
    public function getLabels()
76
    {
77
        return $this->labels;
78
    }
79
80
    /**
81
     * @param base64Binary $labels
82
     *
83
     * @return $this
84
     */
85
    public function setLabels($labels)
86
    {
87
        $this->labels = $labels;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @return labelMetaDataType
94
     */
95
    public function getMetaData()
96
    {
97
        return $this->metaData;
98
    }
99
100
    /**
101
     * @param labelMetaDataType $metaData
102
     *
103
     * @return $this
104
     */
105
    public function setMetaData($metaData)
106
    {
107
        $this->metaData = $metaData;
108
109
        return $this;
110
    }
111
}
112