kemApiV3DevicesIdAtsAtsIdGet method

Future<Response<AtsDetailsDTO>> kemApiV3DevicesIdAtsAtsIdGet({
  1. required int? id,
  2. required String? atsId,
})

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);
}