We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f77a0 commit 95879abCopy full SHA for 95879ab
src/Api/Operator/Webspace.php
@@ -293,6 +293,22 @@ public function getCompleteList()
293
}
294
295
296
+ /**
297
+ * @return string
298
+ */
299
+ public function getSubscriptionStatus()
300
+ {
301
+ $items = $this->_getItems( Struct\CompleteGeneralInfo::class, 'gen_info' );
302
+ $item = reset($items );
303
+
304
+ if( !isset( $item->Status ) or is_null( $item->Status ) or $item->Status === '' ) {
305
+ return null;
306
+ }
307
308
+ return $item->Status;
309
310
311
312
/**
313
* @param string $field
314
* @param int|string $value
0 commit comments