kemApiV3DevicesIdAtsAtsIdPut method

Future<Response<AtsDTO>> kemApiV3DevicesIdAtsAtsIdPut({
  1. required int? id,
  2. required String? atsId,
  3. required AtsUpdateV3Body? body,
})

Update the display name of an ATS sub-device linked to the given hub device. @param id @param atsId

Implementation

Future<chopper.Response<AtsDTO>> kemApiV3DevicesIdAtsAtsIdPut({
  required int? id,
  required String? atsId,
  required AtsUpdateV3Body? body,
}) {
  generatedMapping.putIfAbsent(AtsDTO, () => AtsDTO.fromJsonFactory);

  return _kemApiV3DevicesIdAtsAtsIdPut(id: id, atsId: atsId, body: body);
}