clone method

HologramAuthenticationResult clone()

Creates a copy of the HologramAuthenticationResult object.

return The newly created HologramAuthenticationResult object. throws DocumentException An error has occurred during Document Library execution.

Implementation

HologramAuthenticationResult clone() {
  HologramAuthenticationResult clone = HologramAuthenticationResult();
  var err = documentSDK.id3DocumentHologramAuthenticationResult_CopyTo(_pHandle.value, clone.handle);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
  return clone;
}