amount property

  1. @TagNumber(2)
Int64 amount

Amount to add to the stored value. If this key doesn't currently exist, it's created with this value (encoded as a base 10 string)

Implementation

@$pb.TagNumber(2)
$fixnum.Int64 get amount => $_getI64(1);
  1. @TagNumber(2)
void amount=(Int64 v)

Implementation

@$pb.TagNumber(2)
set amount($fixnum.Int64 v) {
  $_setInt64(1, v);
}