Class GetVersion.Response
- java.lang.Object
-
- nl.harm27.obs.websocket.api.base.BaseResponse
-
- nl.harm27.obs.websocket.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()
String
getObsStudioVersion()
OBS Studio program version.String
getObsWebsocketVersion()
obs-websocket plugin version.String
getSupportedImageExportFormats()
List of supported formats for features that use image export (like the TakeSourceScreenshot request type) formatted as a comma-separated list stringList<String>
getSupportedImageExportFormatsAsList()
double
getVersion()
OBSRemote compatible API version.-
Methods inherited from class nl.harm27.obs.websocket.api.base.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").
-
getSupportedImageExportFormats
public String getSupportedImageExportFormats()
List of supported formats for features that use image export (like the TakeSourceScreenshot request type) formatted as a comma-separated list string
-
-