Class: Google::Apis::RealtimebiddingV1::ListPublisherConnectionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/realtimebidding_v1/classes.rb,
lib/google/apis/realtimebidding_v1/representations.rb,
lib/google/apis/realtimebidding_v1/representations.rb

Overview

A response to a request for listing publisher connections.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListPublisherConnectionsResponse

Returns a new instance of ListPublisherConnectionsResponse.



1389
1390
1391
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1389

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token to retrieve the next page of results. Pass this value in the ListPublisherConnectionsRequest.pageToken field in the subsequent call to the ListPublisherConnections method to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1382
1383
1384
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1382

def next_page_token
  @next_page_token
end

#publisher_connectionsArray<Google::Apis::RealtimebiddingV1::PublisherConnection>

The list of publisher connections. Corresponds to the JSON property publisherConnections



1387
1388
1389
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1387

def publisher_connections
  @publisher_connections
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1394
1395
1396
1397
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1394

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @publisher_connections = args[:publisher_connections] if args.key?(:publisher_connections)
end