useVerifiablePresentation property

  1. @TagNumber(4)
bool useVerifiablePresentation

Wrap the output in a verifiable presentation. If the credential used in the proof is bound to the holder DID, the output will always use a verifiable presentation and this field will be ignored.

Implementation

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

Implementation

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