kemApiV3HomeownerOncueVerifyPost method

Future<Response<OncueVerificationDTO>> kemApiV3HomeownerOncueVerifyPost({
  1. required OncueVerificationV3Body? body,
})

Verify the given OnCue login information and return whether the login info is valid and the OnCue user's devices can be imported into the logged-in user's account.

Implementation

Future<chopper.Response<OncueVerificationDTO>>
    kemApiV3HomeownerOncueVerifyPost(
        {required OncueVerificationV3Body? body}) {
  generatedMapping.putIfAbsent(
      OncueVerificationDTO, () => OncueVerificationDTO.fromJsonFactory);

  return _kemApiV3HomeownerOncueVerifyPost(body: body);
}