You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -145,6 +149,29 @@ public void setImsi(String imsi) {
145
149
}
146
150
147
151
152
+
publicSimactivate(Booleanactivate) {
153
+
154
+
this.activate = activate;
155
+
returnthis;
156
+
}
157
+
158
+
/**
159
+
* Whether the SIM is activated when it is assigned to the endpoint. Defaults to true server-side, so pass false to assign the SIM without activating it. Left null the property is omitted from the request.
160
+
* @return activate
161
+
**/
162
+
@javax.annotation.Nullable
163
+
@ApiModelProperty(value = "Whether the SIM is activated when it is assigned to the endpoint. Defaults to true server-side, so pass false to assign the SIM without activating it.")
164
+
165
+
publicBooleangetActivate() {
166
+
returnactivate;
167
+
}
168
+
169
+
170
+
publicvoidsetActivate(Booleanactivate) {
171
+
this.activate = activate;
172
+
}
173
+
174
+
148
175
@Override
149
176
publicbooleanequals(Objecto) {
150
177
if (this == o) {
@@ -157,12 +184,13 @@ public boolean equals(Object o) {
0 commit comments