Method: SDM::RoleAttachment#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(id: nil, composite_role_id: nil, attached_role_id: nil) ⇒ RoleAttachment
Returns a new instance of RoleAttachment.
4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'lib/models/porcelain.rb', line 4678 def initialize( id: nil, composite_role_id: nil, attached_role_id: nil ) if id != nil @id = id end if composite_role_id != nil @composite_role_id = composite_role_id end if attached_role_id != nil @attached_role_id = attached_role_id end end |