recipientMainAddress property

  1. @TagNumber(1)
String get recipientMainAddress

main account -- can be same as signer, or other main account (if done on some other account's behalf)

Implementation

@$pb.TagNumber(1)
$core.String get recipientMainAddress => $_getSZ(0);
  1. @TagNumber(1)
set recipientMainAddress (String v)

Implementation

@$pb.TagNumber(1)
set recipientMainAddress($core.String v) {
  $_setString(0, v);
}