setTimestampParam method

OptionBuilder setTimestampParam(
  1. String timestampParam
)

The name of the query parameter to use as our timestamp key. The default is "t".

Implementation

OptionBuilder setTimestampParam(String timestampParam) {
  _opts['timestampParam'] = timestampParam;
  return this;
}