Class: Google::Apis::AnalyticsdataV1beta::ListAudienceExportsResponse

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 list of all audience exports for a property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAudienceExportsResponse

Returns a new instance of ListAudienceExportsResponse.



1030
1031
1032
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1030

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

Instance Attribute Details

#audience_exportsArray<Google::Apis::AnalyticsdataV1beta::AudienceExport>

Each audience export for a property. Corresponds to the JSON property audienceExports



1022
1023
1024
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1022

def audience_exports
  @audience_exports
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1028
1029
1030
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1028

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1035
1036
1037
1038
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 1035

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