Skip to content

Commit f753f9b

Browse files
committed
[reformat][antom-sdk-automation] automated change
1 parent cd480d2 commit f753f9b

File tree

190 files changed

+77880
-3689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+77880
-3689
lines changed

Api/DefaultApi.php

Whitespace-only changes.

ApiException.php

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<?php
2+
/**
3+
* ApiException
4+
* PHP version 7.4
5+
*
6+
* @category Class
7+
* @package request
8+
* @author OpenAPI Generator team
9+
* @link https://openapi-generator.tech
10+
*/
11+
12+
/**
13+
* vaults_createVaultingSession
14+
*
15+
* The version of the OpenAPI document: 1.0.0
16+
* Generated by: https://openapi-generator.tech
17+
* OpenAPI Generator version: 6.0.1
18+
*
19+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
20+
* https://openapi-generator.tech
21+
* Do not edit the class manually.
22+
*/
23+
24+
/**
25+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
26+
* https://openapi-generator.tech
27+
* Do not edit the class manually.
28+
*/
29+
30+
namespace request;
31+
32+
use \Exception;
33+
34+
/**
35+
* ApiException Class Doc Comment
36+
*
37+
* @category Class
38+
* @package request
39+
* @author OpenAPI Generator team
40+
* @link https://openapi-generator.tech
41+
*/
42+
class ApiException extends Exception
43+
{
44+
/**
45+
* The HTTP body of the server response either as Json or string.
46+
*
47+
* @var \stdClass|string|null
48+
*/
49+
protected $responseBody;
50+
51+
/**
52+
* The HTTP header of the server response.
53+
*
54+
* @var string[]|null
55+
*/
56+
protected $responseHeaders;
57+
58+
/**
59+
* The deserialized response object
60+
*
61+
* @var \stdClass|string|null
62+
*/
63+
protected $responseObject;
64+
65+
/**
66+
* Constructor
67+
*
68+
* @param string $message Error message
69+
* @param int $code HTTP status code
70+
* @param string[]|null $responseHeaders HTTP response header
71+
* @param \stdClass|string|null $responseBody HTTP decoded body of the server response either as \stdClass or string
72+
*/
73+
public function __construct($message = "", $code = 0, $responseHeaders = [], $responseBody = null)
74+
{
75+
parent::__construct($message, $code);
76+
$this->responseHeaders = $responseHeaders;
77+
$this->responseBody = $responseBody;
78+
}
79+
80+
/**
81+
* Gets the HTTP response header
82+
*
83+
* @return string[]|null HTTP response header
84+
*/
85+
public function getResponseHeaders()
86+
{
87+
return $this->responseHeaders;
88+
}
89+
90+
/**
91+
* Gets the HTTP body of the server response either as Json or string
92+
*
93+
* @return \stdClass|string|null HTTP body of the server response either as \stdClass or string
94+
*/
95+
public function getResponseBody()
96+
{
97+
return $this->responseBody;
98+
}
99+
100+
/**
101+
* Sets the deserialized response object (during deserialization)
102+
*
103+
* @param mixed $obj Deserialized response object
104+
*
105+
* @return void
106+
*/
107+
public function setResponseObject($obj)
108+
{
109+
$this->responseObject = $obj;
110+
}
111+
112+
/**
113+
* Gets the deserialized response object (during deserialization)
114+
*
115+
* @return mixed the deserialized response object
116+
*/
117+
public function getResponseObject()
118+
{
119+
return $this->responseObject;
120+
}
121+
}

0 commit comments

Comments
 (0)