dataInfo.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Elasticsearch\V20170613\Models\CapacityPlanRequest;
  4. use AlibabaCloud\Tea\Model;
  5. class dataInfo extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $code;
  11. /**
  12. * @var int
  13. */
  14. public $size;
  15. /**
  16. * @var int
  17. */
  18. public $totalCount;
  19. /**
  20. * @var string
  21. */
  22. public $type;
  23. /**
  24. * @var string
  25. */
  26. public $unit;
  27. protected $_name = [
  28. 'code' => 'code',
  29. 'size' => 'size',
  30. 'totalCount' => 'totalCount',
  31. 'type' => 'type',
  32. 'unit' => 'unit',
  33. ];
  34. public function validate()
  35. {
  36. }
  37. public function toMap()
  38. {
  39. $res = [];
  40. if (null !== $this->code) {
  41. $res['code'] = $this->code;
  42. }
  43. if (null !== $this->size) {
  44. $res['size'] = $this->size;
  45. }
  46. if (null !== $this->totalCount) {
  47. $res['totalCount'] = $this->totalCount;
  48. }
  49. if (null !== $this->type) {
  50. $res['type'] = $this->type;
  51. }
  52. if (null !== $this->unit) {
  53. $res['unit'] = $this->unit;
  54. }
  55. return $res;
  56. }
  57. /**
  58. * @param array $map
  59. *
  60. * @return dataInfo
  61. */
  62. public static function fromMap($map = [])
  63. {
  64. $model = new self();
  65. if (isset($map['code'])) {
  66. $model->code = $map['code'];
  67. }
  68. if (isset($map['size'])) {
  69. $model->size = $map['size'];
  70. }
  71. if (isset($map['totalCount'])) {
  72. $model->totalCount = $map['totalCount'];
  73. }
  74. if (isset($map['type'])) {
  75. $model->type = $map['type'];
  76. }
  77. if (isset($map['unit'])) {
  78. $model->unit = $map['unit'];
  79. }
  80. return $model;
  81. }
  82. }