responseAddress property

  1. @TagNumber(4)
String get responseAddress

Address where to send a response with confirmation of a successful transfer and the rest of the incoming message Toncoins. Usually the sender should get back their toncoins.

Implementation

@$pb.TagNumber(4)
$core.String get responseAddress => $_getSZ(3);
  1. @TagNumber(4)
set responseAddress (String v)

Implementation

@$pb.TagNumber(4)
set responseAddress($core.String v) {
  $_setString(3, v);
}