Class: Google::Apis::DisplayvideoV1::ListGoogleAudiencesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::ListGoogleAudiencesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Instance Attribute Summary collapse
-
#google_audiences ⇒ Array<Google::Apis::DisplayvideoV1::GoogleAudience>
The list of Google audiences.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListGoogleAudiencesResponse
constructor
A new instance of ListGoogleAudiencesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListGoogleAudiencesResponse
Returns a new instance of ListGoogleAudiencesResponse.
5820 5821 5822 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5820 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_audiences ⇒ Array<Google::Apis::DisplayvideoV1::GoogleAudience>
The list of Google audiences. This list will be absent if empty.
Corresponds to the JSON property googleAudiences
5811 5812 5813 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5811 def google_audiences @google_audiences end |
#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 ListGoogleAudiences
method to
retrieve the next page of results.
Corresponds to the JSON property nextPageToken
5818 5819 5820 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5818 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5825 5826 5827 5828 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 5825 def update!(**args) @google_audiences = args[:google_audiences] if args.key?(:google_audiences) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |