Class: AppnexusApi::BidderProfileService
- Inherits:
-
Service
- Object
- Service
- AppnexusApi::BidderProfileService
show all
- Defined in:
- lib/appnexusapi/bidder_profile_service.rb
Constant Summary
Constants inherited
from Service
Service::DEFAULT_NUMBER_OF_ELEMENTS
Instance Method Summary
collapse
Methods inherited from Service
#create, #get, #get_all, #parse_response, #plural_name, #plural_uri_name, #resource_name, #update, #uri_name
Constructor Details
Returns a new instance of BidderProfileService.
3
4
5
6
|
# File 'lib/appnexusapi/bidder_profile_service.rb', line 3
def initialize(connection, bidder_id)
@bidder_id = bidder_id
super(connection)
end
|
Instance Method Details
#name ⇒ Object
8
9
10
|
# File 'lib/appnexusapi/bidder_profile_service.rb', line 8
def name
"profile"
end
|
#uri_suffix ⇒ Object
16
17
18
|
# File 'lib/appnexusapi/bidder_profile_service.rb', line 16
def uri_suffix
"profile/#{@bidder_id}"
end
|