Class: KillBillClient::Model::UsageRecord
- Inherits:
-
SubscriptionUsageRecordAttributes
- Object
- Resource
- SubscriptionUsageRecordAttributes
- KillBillClient::Model::UsageRecord
- Defined in:
- lib/killbill_client/models/usage_record.rb
Constant Summary collapse
- KILLBILL_API_USAGES_PREFIX =
"#{KILLBILL_API_PREFIX}/usages"
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.find_by_subscription_id(subscription_id, start_date, end_date, options = {}) ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/killbill_client/models/usage_record.rb', line 11 def find_by_subscription_id(subscription_id, start_date, end_date, = {}) params = {} params[:startDate] = start_date params[:endDate] = end_date get "#{KILLBILL_API_USAGES_PREFIX}/#{subscription_id}", params, , KillBillClient::Model::RolledUpUsageAttributes.new.class end |
Instance Method Details
#create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
23 24 25 26 27 28 29 30 31 32 |
# File 'lib/killbill_client/models/usage_record.rb', line 23 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 |