Class: Google::Apis::AnalyticsdataV1beta::QueryAudienceExportRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsdata_v1beta/classes.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb

Overview

A request to list users in an audience export.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryAudienceExportRequest

Returns a new instance of QueryAudienceExportRequest.



1663
1664
1665
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1663

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#limitFixnum

Optional. The number of rows to return. If unspecified, 10,000 rows are returned. The API returns a maximum of 250,000 rows per request, no matter how many you ask for. limit must be positive. The API can also return fewer rows than the requested limit, if there aren't as many dimension values as the limit. To learn more about this pagination parameter, see Pagination . Corresponds to the JSON property limit

Returns:

  • (Fixnum)


1650
1651
1652
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1650

def limit
  @limit
end

#offsetFixnum

Optional. The row count of the start row. The first row is counted as row 0. When paging, the first request does not specify offset; or equivalently, sets offset to 0; the first request returns the first limit of rows. The second request sets offset to the limit of the first request; the second request returns the second limit of rows. To learn more about this pagination parameter, see Pagination. Corresponds to the JSON property offset

Returns:

  • (Fixnum)


1661
1662
1663
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1661

def offset
  @offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1668
1669
1670
1671
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1668

def update!(**args)
  @limit = args[:limit] if args.key?(:limit)
  @offset = args[:offset] if args.key?(:offset)
end