1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <?php
|
| namespace AlibabaCloud\Tea\FileForm\FileForm;
|
| use AlibabaCloud\Tea\Model;
|
| class FileField extends Model
| {
| public $filename;
| public $contentType;
| public $content;
|
| public function __construct($config = [])
| {
| $this->_required = [
| 'filename' => true,
| 'contentType' => true,
| 'content' => true,
| ];
| parent::__construct($config);
| }
| }
|
|