Class: ChannelAdvisor::StoreServiceSOAP::SearchPhraseOccurrence
- Inherits:
-
Object
- Object
- ChannelAdvisor::StoreServiceSOAP::SearchPhraseOccurrence
- Defined in:
- lib/channel_advisor/store_service/types.rb
Overview
/SearchPhraseOccurrence
phrase - SOAP::SOAPString
count - SOAP::SOAPInt
Instance Attribute Summary collapse
-
#count ⇒ Object
Returns the value of attribute count.
-
#phrase ⇒ Object
Returns the value of attribute phrase.
Instance Method Summary collapse
-
#initialize(phrase = nil, count = nil) ⇒ SearchPhraseOccurrence
constructor
A new instance of SearchPhraseOccurrence.
Constructor Details
#initialize(phrase = nil, count = nil) ⇒ SearchPhraseOccurrence
Returns a new instance of SearchPhraseOccurrence.
56 57 58 59 |
# File 'lib/channel_advisor/store_service/types.rb', line 56 def initialize(phrase = nil, count = nil) @phrase = phrase @count = count end |
Instance Attribute Details
#count ⇒ Object
Returns the value of attribute count.
54 55 56 |
# File 'lib/channel_advisor/store_service/types.rb', line 54 def count @count end |
#phrase ⇒ Object
Returns the value of attribute phrase.
53 54 55 |
# File 'lib/channel_advisor/store_service/types.rb', line 53 def phrase @phrase end |