2020class Command extends \Google \Collection
2121{
2222 protected $ collection_key = 'resetPasswordFlags ' ;
23+ protected $ addEsimParamsType = AddEsimParams::class;
24+ protected $ addEsimParamsDataType = '' ;
2325 protected $ clearAppsDataParamsType = ClearAppsDataParams::class;
2426 protected $ clearAppsDataParamsDataType = '' ;
2527 protected $ clearAppsDataStatusType = ClearAppsDataStatus::class;
@@ -36,10 +38,14 @@ class Command extends \Google\Collection
3638 * @var string
3739 */
3840 public $ errorCode ;
41+ protected $ esimStatusType = EsimCommandStatus::class;
42+ protected $ esimStatusDataType = '' ;
3943 /**
4044 * @var string
4145 */
4246 public $ newPassword ;
47+ protected $ removeEsimParamsType = RemoveEsimParams::class;
48+ protected $ removeEsimParamsDataType = '' ;
4349 protected $ requestDeviceInfoParamsType = RequestDeviceInfoParams::class;
4450 protected $ requestDeviceInfoParamsDataType = '' ;
4551 protected $ requestDeviceInfoStatusType = RequestDeviceInfoStatus::class;
@@ -65,6 +71,20 @@ class Command extends \Google\Collection
6571 */
6672 public $ userName ;
6773
74+ /**
75+ * @param AddEsimParams
76+ */
77+ public function setAddEsimParams (AddEsimParams $ addEsimParams )
78+ {
79+ $ this ->addEsimParams = $ addEsimParams ;
80+ }
81+ /**
82+ * @return AddEsimParams
83+ */
84+ public function getAddEsimParams ()
85+ {
86+ return $ this ->addEsimParams ;
87+ }
6888 /**
6989 * @param ClearAppsDataParams
7090 */
@@ -135,6 +155,20 @@ public function getErrorCode()
135155 {
136156 return $ this ->errorCode ;
137157 }
158+ /**
159+ * @param EsimCommandStatus
160+ */
161+ public function setEsimStatus (EsimCommandStatus $ esimStatus )
162+ {
163+ $ this ->esimStatus = $ esimStatus ;
164+ }
165+ /**
166+ * @return EsimCommandStatus
167+ */
168+ public function getEsimStatus ()
169+ {
170+ return $ this ->esimStatus ;
171+ }
138172 /**
139173 * @param string
140174 */
@@ -149,6 +183,20 @@ public function getNewPassword()
149183 {
150184 return $ this ->newPassword ;
151185 }
186+ /**
187+ * @param RemoveEsimParams
188+ */
189+ public function setRemoveEsimParams (RemoveEsimParams $ removeEsimParams )
190+ {
191+ $ this ->removeEsimParams = $ removeEsimParams ;
192+ }
193+ /**
194+ * @return RemoveEsimParams
195+ */
196+ public function getRemoveEsimParams ()
197+ {
198+ return $ this ->removeEsimParams ;
199+ }
152200 /**
153201 * @param RequestDeviceInfoParams
154202 */
0 commit comments