Class: AdCenterWrapper::BehavioralBid

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

Overview

https://adcenter.microsoft.com/v7BehavioralBid

bid - AdCenterWrapper::Bid
id - SOAP::SOAPLong
name - SOAP::SOAPString
segmentId - SOAP::SOAPLong
status - AdCenterWrapper::BehavioralBidStatus

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(bid = nil, id = nil, name = nil, segmentId = nil, status = nil) ⇒ BehavioralBid

Returns a new instance of BehavioralBid.



188
189
190
191
192
193
194
# File 'lib/adcenter_wrapper_entities.rb', line 188

def initialize(bid = nil, id = nil, name = nil, segmentId = nil, status = nil)
  @bid = bid
  @id = id
  @name = name
  @segmentId = segmentId
  @status = status
end

Instance Attribute Details

#bidObject

Returns the value of attribute bid.



182
183
184
# File 'lib/adcenter_wrapper_entities.rb', line 182

def bid
  @bid
end

#idObject

Returns the value of attribute id.



183
184
185
# File 'lib/adcenter_wrapper_entities.rb', line 183

def id
  @id
end

#nameObject

Returns the value of attribute name.



184
185
186
# File 'lib/adcenter_wrapper_entities.rb', line 184

def name
  @name
end

#segmentIdObject

Returns the value of attribute segmentId.



185
186
187
# File 'lib/adcenter_wrapper_entities.rb', line 185

def segmentId
  @segmentId
end

#statusObject

Returns the value of attribute status.



186
187
188
# File 'lib/adcenter_wrapper_entities.rb', line 186

def status
  @status
end