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.
837 838 839 840 841 842 843 844 845 846 847 848 849 |
# File 'lib/models/porcelain.rb', line 837 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 |