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.
4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 |
# File 'lib/models/porcelain.rb', line 4036 def initialize( id: nil, name: nil, projectid: nil, tags: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name @projectid = projectid == nil ? "" : projectid = == nil ? SDM::() : end |