Class: Google::Apis::ContentV2_1::ListConversionSourcesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_sourcesArray<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_tokenString

Token to be used to fetch the next results page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


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