Class: ChannelAdvisor::StoreServiceSOAP::SearchTermOccurrence
- Inherits:
-
Object
- Object
- ChannelAdvisor::StoreServiceSOAP::SearchTermOccurrence
- Defined in:
- lib/channel_advisor/store_service/types.rb
Overview
/SearchTermOccurrence
term - SOAP::SOAPString
count - SOAP::SOAPInt
Instance Attribute Summary collapse
-
#count ⇒ Object
Returns the value of attribute count.
-
#term ⇒ Object
Returns the value of attribute term.
Instance Method Summary collapse
-
#initialize(term = nil, count = nil) ⇒ SearchTermOccurrence
constructor
A new instance of SearchTermOccurrence.
Constructor Details
#initialize(term = nil, count = nil) ⇒ SearchTermOccurrence
Returns a new instance of SearchTermOccurrence.
74 75 76 77 |
# File 'lib/channel_advisor/store_service/types.rb', line 74 def initialize(term = nil, count = nil) @term = term @count = count end |
Instance Attribute Details
#count ⇒ Object
Returns the value of attribute count.
72 73 74 |
# File 'lib/channel_advisor/store_service/types.rb', line 72 def count @count end |
#term ⇒ Object
Returns the value of attribute term.
71 72 73 |
# File 'lib/channel_advisor/store_service/types.rb', line 71 def term @term end |