Class: KillBillClient::Model::CustomField
- Inherits:
-
CustomFieldAttributes
- Object
- Resource
- CustomFieldAttributes
- KillBillClient::Model::CustomField
- Includes:
- AuditLogWithHistoryHelper
- Defined in:
- lib/killbill_client/models/custom_field.rb
Constant Summary collapse
- KILLBILL_API_CUSTOM_FIELDS_PREFIX =
"#{KILLBILL_API_PREFIX}/customFields"
Class Method Summary collapse
- .find_in_batches(offset = 0, limit = 100, options = {}) ⇒ Object
- .find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {}) ⇒ Object
Methods included from AuditLogWithHistoryHelper
Class Method Details
.find_in_batches(offset = 0, limit = 100, options = {}) ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/killbill_client/models/custom_field.rb', line 14 def find_in_batches(offset = 0, limit = 100, = {}) get "#{KILLBILL_API_CUSTOM_FIELDS_PREFIX}/#{Resource::KILLBILL_API_PAGINATION_PREFIX}", { :offset => offset, :limit => limit }, end |
.find_in_batches_by_search_key(search_key, offset = 0, limit = 100, options = {}) ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/killbill_client/models/custom_field.rb', line 23 def find_in_batches_by_search_key(search_key, offset = 0, limit = 100, = {}) get "#{KILLBILL_API_CUSTOM_FIELDS_PREFIX}/search/#{search_key}", { :offset => offset, :limit => limit }, end |