Class: Google::Apis::ContentV2_1::ListConversionSourcesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ListConversionSourcesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Overview
Response message for the ListConversionSources method.
Instance Attribute Summary collapse
-
#conversion_sources ⇒ Array<Google::Apis::ContentV2_1::ConversionSource>
List of conversion sources.
-
#next_page_token ⇒ String
Token to be used to fetch the next results page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListConversionSourcesResponse
constructor
A new instance of ListConversionSourcesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListConversionSourcesResponse
Returns a new instance of ListConversionSourcesResponse.
6355 6356 6357 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversion_sources ⇒ Array<Google::Apis::ContentV2_1::ConversionSource>
List of conversion sources.
Corresponds to the JSON property conversionSources
6348 6349 6350 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6348 def conversion_sources @conversion_sources end |
#next_page_token ⇒ String
Token to be used to fetch the next results page.
Corresponds to the JSON property nextPageToken
6353 6354 6355 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6353 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6360 6361 6362 6363 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6360 def update!(**args) @conversion_sources = args[:conversion_sources] if args.key?(:conversion_sources) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |