@@ -76,6 +76,7 @@ class User implements ModelInterface, ArrayAccess
7676 'device_readonly ' => 'bool ' ,
7777 'limit_commands ' => 'bool ' ,
7878 'token ' => 'string ' ,
79+ 'attributes ' => '\Swagger\Client\Model\UserAttributes ' ,
7980 'phone ' => 'string '
8081 ];
8182
@@ -104,6 +105,7 @@ class User implements ModelInterface, ArrayAccess
104105 'device_readonly ' => null ,
105106 'limit_commands ' => null ,
106107 'token ' => null ,
108+ 'attributes ' => null ,
107109 'phone ' => null
108110 ];
109111
@@ -153,6 +155,7 @@ public static function swaggerFormats()
153155 'device_readonly ' => 'deviceReadonly ' ,
154156 'limit_commands ' => 'limitCommands ' ,
155157 'token ' => 'token ' ,
158+ 'attributes ' => 'attributes ' ,
156159 'phone ' => 'phone '
157160 ];
158161
@@ -181,6 +184,7 @@ public static function swaggerFormats()
181184 'device_readonly ' => 'setDeviceReadonly ' ,
182185 'limit_commands ' => 'setLimitCommands ' ,
183186 'token ' => 'setToken ' ,
187+ 'attributes ' => 'setAttributes ' ,
184188 'phone ' => 'setPhone '
185189 ];
186190
@@ -209,6 +213,7 @@ public static function swaggerFormats()
209213 'device_readonly ' => 'getDeviceReadonly ' ,
210214 'limit_commands ' => 'getLimitCommands ' ,
211215 'token ' => 'getToken ' ,
216+ 'attributes ' => 'getAttributes ' ,
212217 'phone ' => 'getPhone '
213218 ];
214219
@@ -291,6 +296,7 @@ public function __construct(array $data = null)
291296 $ this ->container ['device_readonly ' ] = isset ($ data ['device_readonly ' ]) ? $ data ['device_readonly ' ] : null ;
292297 $ this ->container ['limit_commands ' ] = isset ($ data ['limit_commands ' ]) ? $ data ['limit_commands ' ] : null ;
293298 $ this ->container ['token ' ] = isset ($ data ['token ' ]) ? $ data ['token ' ] : null ;
299+ $ this ->container ['attributes ' ] = isset ($ data ['attributes ' ]) ? $ data ['attributes ' ] : null ;
294300 $ this ->container ['phone ' ] = isset ($ data ['phone ' ]) ? $ data ['phone ' ] : null ;
295301 }
296302
@@ -775,6 +781,30 @@ public function setToken($token)
775781 return $ this ;
776782 }
777783
784+ /**
785+ * Gets attributes
786+ *
787+ * @return \Swagger\Client\Model\UserAttributes
788+ */
789+ public function getAttributes ()
790+ {
791+ return $ this ->container ['attributes ' ];
792+ }
793+
794+ /**
795+ * Sets attributes
796+ *
797+ * @param \Swagger\Client\Model\UserAttributes $attributes attributes
798+ *
799+ * @return $this
800+ */
801+ public function setAttributes ($ attributes )
802+ {
803+ $ this ->container ['attributes ' ] = $ attributes ;
804+
805+ return $ this ;
806+ }
807+
778808 /**
779809 * Gets phone
780810 *
0 commit comments