request.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace Darabonba\GatewaySpi\Models\InterceptorContext;
  4. use AlibabaCloud\Tea\Model;
  5. use AlibabaCloud\Credentials\Credential;
  6. class request extends Model {
  7. public function validate() {
  8. Model::validateRequired('pathname', $this->pathname, true);
  9. Model::validateRequired('productId', $this->productId, true);
  10. Model::validateRequired('action', $this->action, true);
  11. Model::validateRequired('version', $this->version, true);
  12. Model::validateRequired('protocol', $this->protocol, true);
  13. Model::validateRequired('method', $this->method, true);
  14. Model::validateRequired('authType', $this->authType, true);
  15. Model::validateRequired('bodyType', $this->bodyType, true);
  16. Model::validateRequired('reqBodyType', $this->reqBodyType, true);
  17. Model::validateRequired('credential', $this->credential, true);
  18. Model::validateRequired('userAgent', $this->userAgent, true);
  19. }
  20. public function toMap() {
  21. $res = [];
  22. if (null !== $this->headers) {
  23. $res['headers'] = $this->headers;
  24. }
  25. if (null !== $this->query) {
  26. $res['query'] = $this->query;
  27. }
  28. if (null !== $this->body) {
  29. $res['body'] = $this->body;
  30. }
  31. if (null !== $this->stream) {
  32. $res['stream'] = $this->stream;
  33. }
  34. if (null !== $this->hostMap) {
  35. $res['hostMap'] = $this->hostMap;
  36. }
  37. if (null !== $this->pathname) {
  38. $res['pathname'] = $this->pathname;
  39. }
  40. if (null !== $this->productId) {
  41. $res['productId'] = $this->productId;
  42. }
  43. if (null !== $this->action) {
  44. $res['action'] = $this->action;
  45. }
  46. if (null !== $this->version) {
  47. $res['version'] = $this->version;
  48. }
  49. if (null !== $this->protocol) {
  50. $res['protocol'] = $this->protocol;
  51. }
  52. if (null !== $this->method) {
  53. $res['method'] = $this->method;
  54. }
  55. if (null !== $this->authType) {
  56. $res['authType'] = $this->authType;
  57. }
  58. if (null !== $this->bodyType) {
  59. $res['bodyType'] = $this->bodyType;
  60. }
  61. if (null !== $this->reqBodyType) {
  62. $res['reqBodyType'] = $this->reqBodyType;
  63. }
  64. if (null !== $this->style) {
  65. $res['style'] = $this->style;
  66. }
  67. if (null !== $this->credential) {
  68. $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null;
  69. }
  70. if (null !== $this->signatureVersion) {
  71. $res['signatureVersion'] = $this->signatureVersion;
  72. }
  73. if (null !== $this->signatureAlgorithm) {
  74. $res['signatureAlgorithm'] = $this->signatureAlgorithm;
  75. }
  76. if (null !== $this->userAgent) {
  77. $res['userAgent'] = $this->userAgent;
  78. }
  79. return $res;
  80. }
  81. /**
  82. * @param array $map
  83. * @return request
  84. */
  85. public static function fromMap($map = []) {
  86. $model = new self();
  87. if(isset($map['headers'])){
  88. $model->headers = $map['headers'];
  89. }
  90. if(isset($map['query'])){
  91. $model->query = $map['query'];
  92. }
  93. if(isset($map['body'])){
  94. $model->body = $map['body'];
  95. }
  96. if(isset($map['stream'])){
  97. $model->stream = $map['stream'];
  98. }
  99. if(isset($map['hostMap'])){
  100. $model->hostMap = $map['hostMap'];
  101. }
  102. if(isset($map['pathname'])){
  103. $model->pathname = $map['pathname'];
  104. }
  105. if(isset($map['productId'])){
  106. $model->productId = $map['productId'];
  107. }
  108. if(isset($map['action'])){
  109. $model->action = $map['action'];
  110. }
  111. if(isset($map['version'])){
  112. $model->version = $map['version'];
  113. }
  114. if(isset($map['protocol'])){
  115. $model->protocol = $map['protocol'];
  116. }
  117. if(isset($map['method'])){
  118. $model->method = $map['method'];
  119. }
  120. if(isset($map['authType'])){
  121. $model->authType = $map['authType'];
  122. }
  123. if(isset($map['bodyType'])){
  124. $model->bodyType = $map['bodyType'];
  125. }
  126. if(isset($map['reqBodyType'])){
  127. $model->reqBodyType = $map['reqBodyType'];
  128. }
  129. if(isset($map['style'])){
  130. $model->style = $map['style'];
  131. }
  132. if(isset($map['credential'])){
  133. $model->credential = Credential::fromMap($map['credential']);
  134. }
  135. if(isset($map['signatureVersion'])){
  136. $model->signatureVersion = $map['signatureVersion'];
  137. }
  138. if(isset($map['signatureAlgorithm'])){
  139. $model->signatureAlgorithm = $map['signatureAlgorithm'];
  140. }
  141. if(isset($map['userAgent'])){
  142. $model->userAgent = $map['userAgent'];
  143. }
  144. return $model;
  145. }
  146. public $headers;
  147. public $query;
  148. public $body;
  149. public $stream;
  150. public $hostMap;
  151. /**
  152. * @var string
  153. */
  154. public $pathname;
  155. /**
  156. * @var string
  157. */
  158. public $productId;
  159. /**
  160. * @var string
  161. */
  162. public $action;
  163. /**
  164. * @var string
  165. */
  166. public $version;
  167. /**
  168. * @var string
  169. */
  170. public $protocol;
  171. /**
  172. * @var string
  173. */
  174. public $method;
  175. /**
  176. * @var string
  177. */
  178. public $authType;
  179. /**
  180. * @var string
  181. */
  182. public $bodyType;
  183. /**
  184. * @var string
  185. */
  186. public $reqBodyType;
  187. public $style;
  188. /**
  189. * @var Credential
  190. */
  191. public $credential;
  192. public $signatureVersion;
  193. public $signatureAlgorithm;
  194. /**
  195. * @var string
  196. */
  197. public $userAgent;
  198. }