Class: Google::Apis::AdmobV1beta::ListAdaptersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AdmobV1beta::ListAdaptersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admob_v1beta/classes.rb,
lib/google/apis/admob_v1beta/representations.rb,
lib/google/apis/admob_v1beta/representations.rb
Overview
Response for the ListAdaptersRequest.
Instance Attribute Summary collapse
-
#adapters ⇒ Array<Google::Apis::AdmobV1beta::Adapter>
The adapter.
-
#next_page_token ⇒ String
Used to set the
page_tokenin theListAdapterRequestto retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAdaptersResponse
constructor
A new instance of ListAdaptersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAdaptersResponse
Returns a new instance of ListAdaptersResponse.
984 985 986 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#adapters ⇒ Array<Google::Apis::AdmobV1beta::Adapter>
The adapter.
Corresponds to the JSON property adapters
976 977 978 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 976 def adapters @adapters end |
#next_page_token ⇒ String
Used to set the page_token in the ListAdapterRequest to retrieve the next
page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
982 983 984 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 982 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
989 990 991 992 |
# File 'lib/google/apis/admob_v1beta/classes.rb', line 989 def update!(**args) @adapters = args[:adapters] if args.key?(:adapters) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |