kemApiV3DevicesIdAtsAtsIdGet method
Get the details for the given ATS device linked to the given hub device.
Will return 403 Forbidden if the user cannot be identified. Will return 404 Not Found if the ATS is not linked to the device. @param id @param atsId
Implementation
Future<chopper.Response<AtsDetailsDTO>> kemApiV3DevicesIdAtsAtsIdGet({
required int? id,
required String? atsId,
}) {
generatedMapping.putIfAbsent(
AtsDetailsDTO, () => AtsDetailsDTO.fromJsonFactory);
return _kemApiV3DevicesIdAtsAtsIdGet(id: id, atsId: atsId);
}