Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListPropertiesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaListPropertiesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb
Overview
Response message for ListProperties RPC.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#properties ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaProperty>
Results that matched the filter criteria and were accessible to the caller.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListPropertiesResponse
constructor
A new instance of GoogleAnalyticsAdminV1betaListPropertiesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1betaListPropertiesResponse
Returns a new instance of GoogleAnalyticsAdminV1betaListPropertiesResponse.
1826 1827 1828 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1826 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
1819 1820 1821 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1819 def next_page_token @next_page_token end |
#properties ⇒ Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaProperty>
Results that matched the filter criteria and were accessible to the caller.
Corresponds to the JSON property properties
1824 1825 1826 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1824 def properties @properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1831 1832 1833 1834 |
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1831 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @properties = args[:properties] if args.key?(:properties) end |