Class GetVersion.Response
- java.lang.Object
-
- nl.harm27.obswebsocket.api.requests.BaseResponse
-
- nl.harm27.obswebsocket.api.requests.general.GetVersion.Response
-
- Enclosing class:
- GetVersion
public static class GetVersion.Response extends BaseResponse
-
-
Constructor Summary
Constructors Constructor Description Response()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAvailableRequests()
List of available request types, formatted as a comma-separated list string (e.g.List<String>
getAvailableRequestsAsList()
List of available request types.String
getObsStudioVersion()
OBS Studio program version.String
getObsWebsocketVersion()
OBS Websocket plugin version.double
getVersion()
OBSRemote compatible API version.-
Methods inherited from class nl.harm27.obswebsocket.api.requests.BaseResponse
getError, getMessageId, getStatus
-
-
-
-
Method Detail
-
getVersion
public double getVersion()
OBSRemote compatible API version. Fixed to 1.1 for retrocompatibility.
-
getObsWebsocketVersion
public String getObsWebsocketVersion()
OBS Websocket plugin version.
-
getObsStudioVersion
public String getObsStudioVersion()
OBS Studio program version.
-
getAvailableRequests
public String getAvailableRequests()
List of available request types, formatted as a comma-separated list string (e.g. : "Method1,Method2,Method3").
-
-