samplingLevel property

String? samplingLevel
getter/setter pair

The desired report sample size.

If the the samplingLevel field is unspecified the DEFAULT sampling level is used. Every [ReportRequest](#ReportRequest) within a batchGet method must contain the same samplingLevel definition. See [developer guide](/analytics/devguides/reporting/core/v4/basics#sampling) for details. Possible string values are:

  • "SAMPLING_UNSPECIFIED" : If the samplingLevel field is unspecified the DEFAULT sampling level is used.
  • "DEFAULT" : Returns response with a sample size that balances speed and accuracy.
  • "SMALL" : It returns a fast response with a smaller sampling size.
  • "LARGE" : Returns a more accurate response using a large sampling size. But this may result in response being slower.

Implementation

core.String? samplingLevel;