Class: KillBillClient::Model::Usage
- Inherits:
-
UsageAttributes
- Object
- Resource
- UsageAttributes
- KillBillClient::Model::Usage
- Defined in:
- lib/killbill_client/models/usage.rb
Constant Summary collapse
- KILLBILL_API_USAGES_PREFIX =
"#{KILLBILL_API_PREFIX}/usages"
Constants inherited from Resource
Resource::KILLBILL_API_PAGINATION_PREFIX, Resource::KILLBILL_API_PREFIX
Instance Attribute Summary
Attributes inherited from Resource
#clazz, #etag, #response, #session_id, #uri
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Resource
#==, #_to_hash, attribute, create_alias, delete, extract_session_id, from_json, from_response, get, has_many, has_one, #hash, head, #initialize, instantiate_record_from_json, post, put, #refresh, #to_hash, #to_json
Constructor Details
This class inherits a constructor from KillBillClient::Model::Resource
Class Method Details
.find_by_subscription_id(subscription_id, options = {}) ⇒ Object
11 12 13 14 15 16 |
# File 'lib/killbill_client/models/usage.rb', line 11 def find_by_subscription_id(subscription_id, = {}) get "#{KILLBILL_API_USAGES_PREFIX}/#{subscription_id}", { }, end |
Instance Method Details
#create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/killbill_client/models/usage.rb', line 19 def create(user = nil, reason = nil, comment = nil, = {}) self.class.post KILLBILL_API_USAGES_PREFIX, to_json, {}, { :user => user, :reason => reason, :comment => comment, }.merge() end |