completionPercentage property

  1. @TagNumber.new(16)
Int64 get completionPercentage

Stores the cumulative completion percentage (this will be diffed at the API and stored only as a diff. E.g., if this is set to 4000, and the cumulative percentage for the same action has been 3500, then the API would store this as 500)

Implementation

@$pb.TagNumber(16)
$fixnum.Int64 get completionPercentage => $_getI64(6);
  1. @TagNumber.new(16)
set completionPercentage (Int64 value)

Implementation

@$pb.TagNumber(16)
set completionPercentage($fixnum.Int64 value) => $_setInt64(6, value);