saveCopy property

  1. @TagNumber(4)
bool saveCopy

Save a copy of the issued credential to this user's wallet. This copy will only contain the credential data, but not the secret proof value. Issuers may use this data to keep track of the details for revocation status.

Implementation

@$pb.TagNumber(4)
$core.bool get saveCopy => $_getBF(2);
  1. @TagNumber(4)
void saveCopy=(bool v)

Implementation

@$pb.TagNumber(4)
set saveCopy($core.bool v) {
  $_setBool(2, v);
}