clone method

HologramAuthenticationResultList clone()

Creates a copy of the HologramAuthenticationResultList object.

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

Implementation

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