2
2
namespace Hyperwallet \Model ;
3
3
4
4
/**
5
- * Represents a V4 HyperwalletVerificationDocument
5
+ * Represents a V3 HyperwalletVerificationDocument
6
6
*
7
7
* @property string $category The category of the document
8
8
* @property string $type The type of the document
@@ -61,17 +61,6 @@ public function getCategory() {
61
61
return $ this ->category ;
62
62
}
63
63
64
- // /**
65
- // * Set the document category
66
- // *
67
- // * @param string $category
68
- // * @return HyperwalletVerificationDocument
69
- // */
70
- // public function setCategory($category) {
71
- // $this->category = $category;
72
- // return $this;
73
- // }
74
-
75
64
/**
76
65
* Get the document type
77
66
*
@@ -81,16 +70,6 @@ public function getType() {
81
70
return $ this ->type ;
82
71
}
83
72
84
- // /**
85
- // * Set the document type
86
- // *
87
- // * @param string $type
88
- // * @return HyperwalletVerificationDocument
89
- // */
90
- // public function setType($type) {
91
- // $this->type = $type;
92
- // return $this;
93
- // }
94
73
95
74
/**
96
75
* Get the country
@@ -101,60 +80,30 @@ public function getCountry() {
101
80
return $ this ->country ;
102
81
}
103
82
104
- // /**
105
- // * Set the country
106
- // *
107
- // * @param string $country
108
- // * @return HyperwalletVerificationDocument
109
- // */
110
- // public function setCountry($country) {
111
- // $this->country = $country;
112
- // return $this;
113
- // }
114
83
115
84
/**
116
85
* Get the document reasons
117
86
*
118
87
* @return HyperwalletVerificationDocumentReason $reasons
119
88
*/
120
- public function getReasons ($ reasons ) {
89
+ public function getReasons () {
121
90
return $ this ->reasons ;
122
91
}
123
92
124
- // /**
125
- // * Set the document reasons
126
- // *
127
- // * @param HyperwalletVerificationDocumentReason $reasons
128
- // * @return HyperwalletVerificationDocument
129
- // */
130
- // public function setReasons($reasons) {
131
- // $this->reasons = $reasons;
132
- // return $this;
133
- // }
134
93
135
94
/**
136
95
* Get the uploadFiles
137
96
*
138
97
* @return object $uploadFiles
139
98
*/
140
- public function getUploadFiles ($ uploadFiles ) {
99
+ public function getUploadFiles () {
141
100
return $ this ->uploadFiles ;
142
101
}
143
102
144
- // /**
145
- // * Set the uploadFiles
146
- // *
147
- // * @param object $uploadFiles
148
- // * @return HyperwalletVerificationDocument
149
- // */
150
- // public function setUploadFiles($uploadFiles) {
151
- // $this->uploadFiles = $uploadFiles;
152
- // return $this;
153
- // }
154
103
}
155
104
156
105
/**
157
- * Represents a V4 HyperwalletVerificationDocumentCollection
106
+ * Represents a V3 HyperwalletVerificationDocumentCollection
158
107
*
159
108
* @property array $documents The list of documents
160
109
*
0 commit comments