Class: SDM::AccessRequestEvent
- Inherits:
-
Object
- Object
- SDM::AccessRequestEvent
- 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
-
#actor_id ⇒ Object
The account responsible for the event.
-
#id ⇒ Object
The access request event id.
-
#metadata ⇒ Object
The metadata about the event.
-
#request_id ⇒ Object
The request that the event is bound to.
-
#type ⇒ Object
The type of event.
Instance Method Summary collapse
-
#initialize(actor_id: nil, id: nil, metadata: nil, request_id: nil, type: nil) ⇒ AccessRequestEvent
constructor
A new instance of AccessRequestEvent.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(actor_id: nil, id: nil, metadata: nil, request_id: nil, type: nil) ⇒ AccessRequestEvent
Returns a new instance of AccessRequestEvent.
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 |
# File 'lib/models/porcelain.rb', line 1027 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_id ⇒ Object
The account responsible for the event.
1017 1018 1019 |
# File 'lib/models/porcelain.rb', line 1017 def actor_id @actor_id end |
#id ⇒ Object
The access request event id.
1019 1020 1021 |
# File 'lib/models/porcelain.rb', line 1019 def id @id end |
#metadata ⇒ Object
The metadata about the event
1021 1022 1023 |
# File 'lib/models/porcelain.rb', line 1021 def @metadata end |
#request_id ⇒ Object
The request that the event is bound to.
1023 1024 1025 |
# File 'lib/models/porcelain.rb', line 1023 def request_id @request_id end |
#type ⇒ Object
The type of event.
1025 1026 1027 |
# File 'lib/models/porcelain.rb', line 1025 def type @type end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1041 1042 1043 1044 1045 1046 1047 |
# File 'lib/models/porcelain.rb', line 1041 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |