Class: KillBillClient::Model::Security

Inherits:
Resource
  • Object
show all
Defined in:
lib/killbill_client/models/security.rb

Constant Summary collapse

KILLBILL_API_SECURITY_PREFIX =
"#{KILLBILL_API_PREFIX}/security"

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 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_permissions(options = {}) ⇒ Object



7
8
9
10
11
# File 'lib/killbill_client/models/security.rb', line 7

def find_permissions(options = {})
  get "#{KILLBILL_API_SECURITY_PREFIX}/permissions",
      {},
      options
end

.find_subject(options = {}) ⇒ Object



13
14
15
16
17
18
# File 'lib/killbill_client/models/security.rb', line 13

def find_subject(options = {})
  get "#{KILLBILL_API_SECURITY_PREFIX}/subject",
      {},
      options,
      SubjectAttributes # Attribute object as Subject is not a Kill Bill resource
end