Class: KillBillClient::Model::RoleDefinition

Inherits:
RoleDefinitionAttributes show all
Defined in:
lib/killbill_client/models/role_definition.rb

Instance Method Summary collapse

Instance Method Details

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



5
6
7
8
9
10
11
12
13
14
15
# File 'lib/killbill_client/models/role_definition.rb', line 5

def create(user = nil, reason = nil, comment = nil, options = {})
  created_role = self.class.post "#{Security::KILLBILL_API_SECURITY_PREFIX}/roles",
                                 to_json,
                                 {},
                                 {
                                     :user => user,
                                     :reason => reason,
                                     :comment => comment,
                                 }.merge(options)
  created_role.refresh(options)
end