Method: SDM::Role#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(id: nil, name: nil, access_rules: nil, composite: nil, tags: nil) ⇒ Role
Returns a new instance of Role.
6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 |
# File 'lib/models/porcelain.rb', line 6706 def initialize( id: nil, name: nil, access_rules: nil, composite: nil, tags: nil ) if id != nil @id = id end if name != nil @name = name end if access_rules != nil @access_rules = access_rules end if composite != nil @composite = composite end if != nil @tags = end end |