getReplayConfiguration method
Returns the current configuration of the replay service. This operation is mandatory.
Implementation
Future<ReplayConfiguration> getReplayConfiguration() async {
loggy.debug('getReplayConfiguration');
final envelope = await transport.sendRequest(uri,
transport.securedEnvelope(soap.ReplayRequest.getReplayConfiguration()));
if (envelope.body.hasFault) {
throw Exception(envelope.body.fault.toString());
}
return GetReplayConfigurationResponse.fromJson(envelope.body.response!)
.configuration;
}