Class: ChannelAdvisor::StoreServiceSOAP::SearchTermOccurrence

Inherits:
Object
  • Object
show all
Defined in:
lib/channel_advisor/store_service/types.rb

Overview

/SearchTermOccurrence

term - SOAP::SOAPString
count - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#countObject

Returns the value of attribute count.



72
73
74
# File 'lib/channel_advisor/store_service/types.rb', line 72

def count
  @count
end

#termObject

Returns the value of attribute term.



71
72
73
# File 'lib/channel_advisor/store_service/types.rb', line 71

def term
  @term
end