kemApiV3KohleradminDevicesIdObtainPinPost method

Future<Response<DevicePinDTO>> kemApiV3KohleradminDevicesIdObtainPinPost({
  1. required int? id,
})

Returns the hashed PIN of a device. When unencrypted, this PIN could be used to add a generator to a dealer org or homeowner's device list. @param id

Implementation

Future<chopper.Response<DevicePinDTO>>
    kemApiV3KohleradminDevicesIdObtainPinPost({required int? id}) {
  generatedMapping.putIfAbsent(
      DevicePinDTO, () => DevicePinDTO.fromJsonFactory);

  return _kemApiV3KohleradminDevicesIdObtainPinPost(id: id);
}