Class: KillBillClient::Model::Tag

Inherits:
TagAttributes show all
Defined in:
lib/killbill_client/models/tag.rb

Constant Summary collapse

KILLBILL_API_TAGS_PREFIX =
"#{KILLBILL_API_PREFIX}/tags"

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.find_in_batches(offset = 0, limit = 100, options = {}) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/killbill_client/models/tag.rb', line 10

def find_in_batches(offset = 0, limit = 100, options = {})
  get "#{KILLBILL_API_TAGS_PREFIX}/#{Resource::KILLBILL_API_PAGINATION_PREFIX}",
      {
          :offset => offset,
          :limit  => limit
      },
      options
end

.find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {}) ⇒ Object



19
20
21
22
23
24
25
26
# File 'lib/killbill_client/models/tag.rb', line 19

def find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {})
  get "#{KILLBILL_API_TAGS_PREFIX}/search/#{search_key}",
      {
          :offset => offset,
          :limit  => limit
      },
      options
end

Instance Method Details

#<=>(tag) ⇒ Object



29
30
31
# File 'lib/killbill_client/models/tag.rb', line 29

def <=>(tag)
  tag_definition_name.downcase <=> tag.tag_definition_name.downcase
end