Method: SDM::AccessRequestEvent#initialize
- Defined in:
- lib/models/porcelain.rb
#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 = == nil ? "" : @request_id = request_id == nil ? "" : request_id @type = type == nil ? "" : type end |