Class: Google::Apis::RealtimebiddingV1::ListEndpointsResponse

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 containing bidder endpoints.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListEndpointsResponse

Returns a new instance of ListEndpointsResponse.



1352
1353
1354
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1352

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

Instance Attribute Details

#endpointsArray<Google::Apis::RealtimebiddingV1::Endpoint>

List of bidder endpoints. Corresponds to the JSON property endpoints



1344
1345
1346
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1344

def endpoints
  @endpoints
end

#next_page_tokenString

A token which can be passed to a subsequent call to the ListEndpoints method to retrieve the next page of results in ListEndpointsRequest.pageToken. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1350
1351
1352
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1350

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1357
1358
1359
1360
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1357

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