Class: SDM::AccessRequestEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccessRequestEvents hold information about events related to an access request such as creation, approval and denial.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(actor_id: nil, id: nil, metadata: nil, request_id: nil, type: nil) ⇒ AccessRequestEvent

Returns a new instance of AccessRequestEvent.



1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
# File 'lib/models/porcelain.rb', line 1345

def initialize(
  actor_id: nil,
  id: nil,
  metadata: nil,
  request_id: nil,
  type: nil
)
  @actor_id = actor_id == nil ? "" : actor_id
  @id = id == nil ? "" : id
  @metadata =  == nil ? "" : 
  @request_id = request_id == nil ? "" : request_id
  @type = type == nil ? "" : type
end

Instance Attribute Details

#actor_idObject

The account responsible for the event.



1335
1336
1337
# File 'lib/models/porcelain.rb', line 1335

def actor_id
  @actor_id
end

#idObject

The access request event id.



1337
1338
1339
# File 'lib/models/porcelain.rb', line 1337

def id
  @id
end

#metadataObject

The metadata about the event



1339
1340
1341
# File 'lib/models/porcelain.rb', line 1339

def 
  @metadata
end

#request_idObject

The request that the event is bound to.



1341
1342
1343
# File 'lib/models/porcelain.rb', line 1341

def request_id
  @request_id
end

#typeObject

The type of event.



1343
1344
1345
# File 'lib/models/porcelain.rb', line 1343

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



1359
1360
1361
1362
1363
1364
1365
# File 'lib/models/porcelain.rb', line 1359

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end