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.
57 58 59 60 |
# File 'lib/channel_advisor/store_service/types.rb', line 57 def initialize(phrase = nil, count = nil) @phrase = phrase @count = count end |
Instance Attribute Details
#count ⇒ Object
Returns the value of attribute count.
55 56 57 |
# File 'lib/channel_advisor/store_service/types.rb', line 55 def count @count end |
#phrase ⇒ Object
Returns the value of attribute phrase.
54 55 56 |
# File 'lib/channel_advisor/store_service/types.rb', line 54 def phrase @phrase end |