Method: SDM::GCPStore#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(id: nil, name: nil, projectid: nil, tags: nil) ⇒ GCPStore
Returns a new instance of GCPStore.
4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 |
# File 'lib/models/porcelain.rb', line 4714 def initialize( id: nil, name: nil, projectid: nil, tags: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name @projectid = projectid == nil ? "" : projectid @tags = == nil ? SDM::() : end |