setOutOfOffice method
Set out-of-office absence.
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:
firstDay
First day of the absence in formatYYYY-MM-DD
.lastDay
Last day of the absence in formatYYYY-MM-DD
.status
Short text that is set as user status during the absence.message
Longer multiline message that is shown to others during the absence.userId
oCSAPIRequest
Required to be true for the API request to pass. Defaults totrue
.
Status codes:
- 200: Absence data
- 400: When the first day is not before the last day
- 401: When the user is not logged in
See:
- setOutOfOfficeRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<OutOfOfficeSetOutOfOfficeResponseApplicationJson, void>> setOutOfOffice({
required String firstDay,
required String lastDay,
required String status,
required String message,
required String userId,
bool? oCSAPIRequest,
}) async {
final rawResponse = setOutOfOfficeRaw(
firstDay: firstDay,
lastDay: lastDay,
status: status,
message: message,
userId: userId,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}