Class: KillBillClient::Model::BulkSubscription

Inherits:
BulkBaseSubscriptionAndAddOnsAttributes show all
Includes:
CustomFieldHelper
Defined in:
lib/killbill_client/models/bulk_subscription.rb

Constant Summary collapse

KILLBILL_API_BULK_ENTITLEMENT_PREFIX =
"#{KILLBILL_API_PREFIX}/subscriptions/createEntitlementsWithAddOns"

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

Methods included from CustomFieldHelper

included

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

.create_bulk_subscriptions(bulk_subscription_list, user = nil, reason = nil, comment = nil, entitlement_date = nil, billing_date = nil, call_completion_sec = nil, options = {}) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/killbill_client/models/bulk_subscription.rb', line 13

def create_bulk_subscriptions(bulk_subscription_list, user = nil, reason = nil, comment = nil, entitlement_date = nil, billing_date = nil, call_completion_sec = nil, options = {})

  params = {}
  params[:callCompletion] = true unless call_completion_sec.nil?
  params[:callTimeoutSec] = call_completion_sec unless call_completion_sec.nil?
  params[:entitlementDate]  = entitlement_date unless entitlement_date.nil?
  params[:billingDate]  = billing_date unless billing_date.nil?

  post KILLBILL_API_BULK_ENTITLEMENT_PREFIX,
       bulk_subscription_list.to_json,
       params,
       {
           :user => user,
           :reason => reason,
           :comment => comment,
       }.merge(options)
end