import PathSegment from "../PathSegment"; export default class Status extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** *

Since 1.0.27 (Release 8.3)

Returns the API status; status '200' means the API is working fine, and '503' means it is temporary unavailable.

API Group

Light

*/ get(): Promise; /** *

Since 1.0.27 (Release 8.3)

Returns the API status; status '200' means the API is working fine, and '503' means it is temporary unavailable.

API Group

Light

* return {ApiResponse} */ getRaw(): Promise; }