describeHoursOfOperationOverride method
Describes the hours of operation override.
May throw InternalServiceException.
May throw InvalidParameterException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter hoursOfOperationId :
The identifier for the hours of operation.
Parameter hoursOfOperationOverrideId :
The identifier for the hours of operation override.
Parameter instanceId :
The identifier of the Connect Customer instance.
Implementation
Future<DescribeHoursOfOperationOverrideResponse>
describeHoursOfOperationOverride({
required String hoursOfOperationId,
required String hoursOfOperationOverrideId,
required String instanceId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/hours-of-operations/${Uri.encodeComponent(instanceId)}/${Uri.encodeComponent(hoursOfOperationId)}/overrides/${Uri.encodeComponent(hoursOfOperationOverrideId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeHoursOfOperationOverrideResponse.fromJson(response);
}