setKeepalive method

Future<DynamiteResponse<SetKeepaliveResponseApplicationJson, void>> setKeepalive({
  1. 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:

Implementation

Future<DynamiteResponse<SetKeepaliveResponseApplicationJson, void>> setKeepalive({required int keepalive}) async {
  final rawResponse = setKeepaliveRaw(
    keepalive: keepalive,
  );

  return rawResponse.future;
}