Class: AdCenterWrapper::KeywordBid

Inherits:
Object
  • Object
show all
Defined in:
lib/adcenter_wrapper_entities.rb

Overview

https://adcenter.microsoft.com/v7KeywordBid

broadMatchBid - SOAP::SOAPDouble
exactMatchBid - SOAP::SOAPDouble
keyword - SOAP::SOAPString
phraseMatchBid - SOAP::SOAPDouble

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(broadMatchBid = nil, exactMatchBid = nil, keyword = nil, phraseMatchBid = nil) ⇒ KeywordBid

Returns a new instance of KeywordBid.



427
428
429
430
431
432
# File 'lib/adcenter_wrapper_entities.rb', line 427

def initialize(broadMatchBid = nil, exactMatchBid = nil, keyword = nil, phraseMatchBid = nil)
  @broadMatchBid = broadMatchBid
  @exactMatchBid = exactMatchBid
  @keyword = keyword
  @phraseMatchBid = phraseMatchBid
end

Instance Attribute Details

#broadMatchBidObject

Returns the value of attribute broadMatchBid.



422
423
424
# File 'lib/adcenter_wrapper_entities.rb', line 422

def broadMatchBid
  @broadMatchBid
end

#exactMatchBidObject

Returns the value of attribute exactMatchBid.



423
424
425
# File 'lib/adcenter_wrapper_entities.rb', line 423

def exactMatchBid
  @exactMatchBid
end

#keywordObject

Returns the value of attribute keyword.



424
425
426
# File 'lib/adcenter_wrapper_entities.rb', line 424

def keyword
  @keyword
end

#phraseMatchBidObject

Returns the value of attribute phraseMatchBid.



425
426
427
# File 'lib/adcenter_wrapper_entities.rb', line 425

def phraseMatchBid
  @phraseMatchBid
end