class Google::Apis::AdmobV1::ListAppsResponse
Response for the apps list request.
Attributes
apps[RW]
The resulting apps for the requested account. Corresponds to the JSON property `apps` @return [Array<Google::Apis::AdmobV1::App>]
next_page_token[RW]
If not empty, indicates that there may be more apps for the request; this value should be passed in a new `ListAppsRequest`. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admob_v1/classes.rb, line 454 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admob_v1/classes.rb, line 459 def update!(**args) @apps = args[:apps] if args.key?(:apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end