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.



804
805
806
807
808
809
810
811
812
813
814
815
816
# File 'lib/models/porcelain.rb', line 804

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.



794
795
796
# File 'lib/models/porcelain.rb', line 794

def actor_id
  @actor_id
end

#idObject

The access request event id.



796
797
798
# File 'lib/models/porcelain.rb', line 796

def id
  @id
end

#metadataObject

The metadata about the event



798
799
800
# File 'lib/models/porcelain.rb', line 798

def 
  @metadata
end

#request_idObject

The request that the event is bound to.



800
801
802
# File 'lib/models/porcelain.rb', line 800

def request_id
  @request_id
end

#typeObject

The type of event.



802
803
804
# File 'lib/models/porcelain.rb', line 802

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



818
819
820
821
822
823
824
# File 'lib/models/porcelain.rb', line 818

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