Method: SDM::GCPStore#initialize

Defined in:
lib/models/porcelain.rb

#initialize(id: nil, name: nil, projectid: nil, tags: nil) ⇒ GCPStore



3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
# File 'lib/models/porcelain.rb', line 3464

def initialize(
  id: nil,
  name: nil,
  projectid: nil,
  tags: nil
)
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @projectid = projectid == nil ? "" : projectid
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end