Class: Google::Apis::DisplayvideoV2::ListPartnersResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::ListPartnersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
-
#partners ⇒ Array<Google::Apis::DisplayvideoV2::Partner>
The list of partners.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPartnersResponse
constructor
A new instance of ListPartnersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPartnersResponse
Returns a new instance of ListPartnersResponse.
7963 7964 7965 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 7963 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page of results. Pass this value in the
page_token field in the subsequent call to ListPartners method to retrieve
the next page of results.
Corresponds to the JSON property nextPageToken
7956 7957 7958 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 7956 def next_page_token @next_page_token end |
#partners ⇒ Array<Google::Apis::DisplayvideoV2::Partner>
The list of partners. This list will be absent if empty.
Corresponds to the JSON property partners
7961 7962 7963 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 7961 def partners @partners end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7968 7969 7970 7971 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 7968 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @partners = args[:partners] if args.key?(:partners) end |