quantity property

  1. @TagNumber.new(1)
Int64 get quantity

The quantity (has to be int currently, since certain locations might need negative values, such as "required quantity" responses)

Implementation

@$pb.TagNumber(1)
$fixnum.Int64 get quantity => $_getI64(0);
  1. @TagNumber.new(1)
set quantity (Int64 value)

Implementation

@$pb.TagNumber(1)
set quantity($fixnum.Int64 value) => $_setInt64(0, value);