1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Elasticsearch\V20170613\Models\CapacityPlanRequest;
- use AlibabaCloud\Tea\Model;
- class dataInfo extends Model
- {
- /**
- * @var string
- */
- public $code;
- /**
- * @var int
- */
- public $size;
- /**
- * @var int
- */
- public $totalCount;
- /**
- * @var string
- */
- public $type;
- /**
- * @var string
- */
- public $unit;
- protected $_name = [
- 'code' => 'code',
- 'size' => 'size',
- 'totalCount' => 'totalCount',
- 'type' => 'type',
- 'unit' => 'unit',
- ];
- public function validate()
- {
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->code) {
- $res['code'] = $this->code;
- }
- if (null !== $this->size) {
- $res['size'] = $this->size;
- }
- if (null !== $this->totalCount) {
- $res['totalCount'] = $this->totalCount;
- }
- if (null !== $this->type) {
- $res['type'] = $this->type;
- }
- if (null !== $this->unit) {
- $res['unit'] = $this->unit;
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return dataInfo
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['code'])) {
- $model->code = $map['code'];
- }
- if (isset($map['size'])) {
- $model->size = $map['size'];
- }
- if (isset($map['totalCount'])) {
- $model->totalCount = $map['totalCount'];
- }
- if (isset($map['type'])) {
- $model->type = $map['type'];
- }
- if (isset($map['unit'])) {
- $model->unit = $map['unit'];
- }
- return $model;
- }
- }
|