Class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse
- Inherits:
-
Object
- Object
- Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb,
lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb,
lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb
Overview
Response message for SearchAccessibleApps.
Instance Attribute Summary collapse
-
#apps ⇒ Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1App>
The apps accessible to the user calling the endpoint.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse
constructor
A new instance of GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse
Returns a new instance of GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse.
2067 2068 2069 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2067 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apps ⇒ Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1App>
The apps accessible to the user calling the endpoint.
Corresponds to the JSON property apps
2059 2060 2061 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2059 def apps @apps end |
#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
2065 2066 2067 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2065 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2072 2073 2074 2075 |
# File 'lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb', line 2072 def update!(**args) @apps = args[:apps] if args.key?(:apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |