setKeepalive method
Future<DynamiteResponse<SetKeepaliveResponseApplicationJson, void> >
setKeepalive({
- required int keepalive,
Set keepalive interval.
This endpoint requires admin access.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
keepalive
Keep alive value in seconds.
Status codes:
- 200
See:
- $setKeepalive_Request for the request send by this method.
- $setKeepalive_Serializer for a converter to parse the
Response
from an executed request.
Implementation
Future<_i1.DynamiteResponse<SetKeepaliveResponseApplicationJson, void>> setKeepalive({required int keepalive}) async {
final _request = $setKeepalive_Request(
keepalive: keepalive,
);
final _response = await httpClient.send(_request);
final _serializer = $setKeepalive_Serializer();
final _rawResponse =
await _i1.ResponseConverter<SetKeepaliveResponseApplicationJson, void>(_serializer).convert(_response);
return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}