Class: KillBillClient::Model::Tenant
Constant Summary
collapse
- KILLBILL_API_TENANTS_PREFIX =
"#{KILLBILL_API_PREFIX}/tenants"
Constants inherited
from Resource
Resource::KILLBILL_API_PREFIX
Instance Attribute Summary
Attributes inherited from Resource
#etag, #response, #session_id, #uri
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Resource
attribute, create_alias, delete, extract_session_id, from_json, from_response, get, has_many, has_one, head, instantiate_record_from_json, post, put, #refresh, #to_hash, #to_json
Class Method Details
.find_by_api_key(api_key, options = {}) ⇒ Object
13
14
15
16
17
|
# File 'lib/killbill_client/models/tenant.rb', line 13
def find_by_api_key(api_key, options = {})
get "#{KILLBILL_API_TENANTS_PREFIX}/?apiKey=#{api_key}",
{},
options
end
|
.find_by_id(tenant_id, options = {}) ⇒ Object
7
8
9
10
11
|
# File 'lib/killbill_client/models/tenant.rb', line 7
def find_by_id(tenant_id, options = {})
get "#{KILLBILL_API_TENANTS_PREFIX}/#{tenant_id}",
{},
options
end
|
Instance Method Details
#create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/killbill_client/models/tenant.rb', line 20
def create(user = nil, reason = nil, = nil, options = {})
created_tenant = self.class.post KILLBILL_API_TENANTS_PREFIX,
to_json,
{},
{
:user => user,
:reason => reason,
:comment => ,
}.merge(options)
options[:api_key] = @api_key
options[:api_secret] = @api_secret
created_tenant.refresh(options)
end
|