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.
949 950 951 952 953 954 955 956 957 958 959 960 961 |
# File 'lib/models/porcelain.rb', line 949 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 |