Class: KillBillClient::Model::Subscription

Inherits:
SubscriptionAttributes show all
Includes:
CustomFieldHelper, TagHelper
Defined in:
lib/killbill_client/models/subscription.rb

Constant Summary collapse

KILLBILL_API_ENTITLEMENT_PREFIX =
"#{KILLBILL_API_PREFIX}/subscriptions"

Constants included from TagHelper

TagHelper::AUTO_INVOICING_OFF_ID, TagHelper::AUTO_PAY_OFF_ID, TagHelper::MANUAL_PAY_ID, TagHelper::OVERDUE_ENFORCEMENT_OFF_ID, TagHelper::TEST_ID, TagHelper::WRITTEN_OFF_ID

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 included from CustomFieldHelper

included

Methods included from TagHelper

#add_tag, #add_tag_from_definition_id, #control_tag?, included, #remove_tag, #remove_tag_from_definition_id, #set_tags

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, require_multi_tenant_options!, #to_hash, #to_json

Constructor Details

This class inherits a constructor from KillBillClient::Model::Resource

Class Method Details

.find_by_id(subscription_id, options = {}) ⇒ Object



17
18
19
20
21
# File 'lib/killbill_client/models/subscription.rb', line 17

def find_by_id(subscription_id, options = {})
  get "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}",
      {},
      options
end

Instance Method Details

#cancel(user = nil, reason = nil, comment = nil, requested_date = nil, entitlementPolicy = nil, billing_policy = nil, use_requested_date_for_billing = nil, options = {}) ⇒ Object

Cancel the entitlement at the requested date



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/killbill_client/models/subscription.rb', line 85

def cancel(user = nil, reason = nil, comment = nil, requested_date = nil, entitlementPolicy = nil, billing_policy = nil, use_requested_date_for_billing = nil, options = {})
  params                              = {}
  params[:requestedDate]              = requested_date unless requested_date.nil?
  params[:billingPolicy]              = billing_policy unless billing_policy.nil?
  params[:entitlementPolicy]          = entitlementPolicy unless entitlementPolicy.nil?
  params[:useRequestedDateForBilling] = use_requested_date_for_billing unless use_requested_date_for_billing.nil?

  self.class.delete "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}",
                    {},
                    params,
                    {
                        :user    => user,
                        :reason  => reason,
                        :comment => comment,
                    }.merge(options)
end

#change_plan(input, user = nil, reason = nil, comment = nil, requested_date = nil, billing_policy = nil, target_phase_type = nil, call_completion = false, options = {}) ⇒ Object

Change the plan of the existing Entitlement

@ call_completion : whether the call should wait for invoice/payment to be completed before calls return



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/killbill_client/models/subscription.rb', line 55

def change_plan(input, user = nil, reason = nil, comment = nil,
                requested_date = nil, billing_policy = nil, target_phase_type = nil, call_completion = false, options = {})

  params                  = {}
  params[:callCompletion] = call_completion
  params[:requestedDate]  = requested_date unless requested_date.nil?
  params[:billingPolicy]  = billing_policy unless billing_policy.nil?

  # Make sure account_id is set
  input[:accountId] = @account_id
  input[:productCategory] = @product_category
  input[:phaseType] = target_phase_type

  self.class.put "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{@subscription_id}",
                 input.to_json,
                 params,
                 {
                     :user    => user,
                     :reason  => reason,
                     :comment => comment,
                 }.merge(options)
  self.class.find_by_id(@subscription_id, options)
end

#create(user = nil, reason = nil, comment = nil, requested_date = nil, call_completion = false, options = {}) ⇒ Object

Create a new entitlement



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/killbill_client/models/subscription.rb', line 28

def create(user = nil, reason = nil, comment = nil, requested_date = nil, call_completion = false, options = {})

  params                  = {}
  params[:callCompletion] = call_completion
  params[:entitlementDate]  = requested_date unless requested_date.nil?
  params[:billingDate]  = requested_date unless requested_date.nil?


  created_entitlement = self.class.post KILLBILL_API_ENTITLEMENT_PREFIX,
                                        to_json,
                                        params,
                                        {
                                            :user    => user,
                                            :reason  => reason,
                                            :comment => comment,
                                        }.merge(options)
  created_entitlement.refresh(options)
end

#create_entitlement_with_add_on(entitlements, entitlement_date, billing_date, migrated = false, rename_key_if_exists_and_unused = true, call_completion_sec = nil, user = nil, reason = nil, comment = nil, options = {}) ⇒ Object

Create an entitlement with addOn products



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/killbill_client/models/subscription.rb', line 166

def create_entitlement_with_add_on(entitlements, entitlement_date, billing_date, migrated = false, rename_key_if_exists_and_unused = true, call_completion_sec = nil, user = nil, reason = nil, comment = nil, options = {})
  params = {}
  params[:entitlementDate] = entitlement_date if entitlement_date
  params[:billingDate] = billing_date if billing_date
  params[:migrated] = migrated
  params[:renameKeyIfExistsAndUnused] = rename_key_if_exists_and_unused
  params[:callCompletion] = true unless call_completion_sec.nil?
  params[:callTimeoutSec] = call_completion_sec unless call_completion_sec.nil?

  self.class.post "#{KILLBILL_API_ENTITLEMENT_PREFIX}/createSubscriptionWithAddOns",
                  entitlements.to_json,
                  params,
                  {
                      :user    => user,
                      :reason  => reason,
                      :comment => comment,
                  }.merge(options)
end

#set_blocking_state(state_name, service, is_block_change, is_block_entitlement, is_block_billing, requested_date = nil, user = nil, reason = nil, comment = nil, options = {}) ⇒ Object

Block a Subscription



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/killbill_client/models/subscription.rb', line 140

def set_blocking_state(state_name, service, is_block_change, is_block_entitlement, is_block_billing, requested_date = nil, user = nil, reason = nil, comment = nil, options = {})

  body = KillBillClient::Model::BlockingStateAttributes.new
  body.state_name = state_name
  body.service = service
  body.is_block_change = is_block_change
  body.is_block_entitlement = is_block_entitlement
  body.is_block_billing = is_block_billing
  body.type = "SUBSCRIPTION"

  params = {}
  params[:requestedDate] = requested_date unless requested_date.nil?

  self.class.post "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}/block",
                 body.to_json,
                 params,
                 {
                     :user    => user,
                     :reason  => reason,
                     :comment => comment,
                 }.merge(options)
end

#uncancel(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object

Uncancel a future cancelled entitlement



105
106
107
108
109
110
111
112
113
114
115
# File 'lib/killbill_client/models/subscription.rb', line 105

def uncancel(user = nil, reason = nil, comment = nil, options = {})
  params = {}
  self.class.put "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}/uncancel",
                 nil,
                 params,
                 {
                     :user    => user,
                     :reason  => reason,
                     :comment => comment,
                 }.merge(options)
end

#undo_change_plan(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object

Undo a pending change plan on an entitlement



188
189
190
191
192
193
194
195
196
197
198
# File 'lib/killbill_client/models/subscription.rb', line 188

def undo_change_plan(user = nil, reason = nil, comment = nil, options = {})

  self.class.put "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}/undoChangePlan",
                 {},
                 {},
                 {
                     :user    => user,
                     :reason  => reason,
                     :comment => comment,
                 }.merge(options)
end

#update_bcd(user = nil, reason = nil, comment = nil, effective_from_date = nil, force_past_effective_date = nil, options = {}) ⇒ Object

Update Subscription BCD



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/killbill_client/models/subscription.rb', line 120

def update_bcd(user = nil, reason = nil, comment = nil, effective_from_date = nil, force_past_effective_date = nil, options = {})

  params                  = {}
  params[:effectiveFromDate] = effective_from_date unless effective_from_date.nil?
  params[:forceNewBcdWithPastEffectiveDate] = force_past_effective_date unless force_past_effective_date.nil?

  return self.class.put "#{KILLBILL_API_ENTITLEMENT_PREFIX}/#{subscription_id}/bcd",
                        self.to_json,
                        params,
                        {
                            :user    => user,
                            :reason  => reason,
                            :comment => comment,
                        }.merge(options)
end