10212
10213
10214
10215
10216
10217
10218
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
|
# File 'lib/models/porcelain.rb', line 10212
def initialize(
account_id: nil,
action: nil,
created_at: nil,
debug: nil,
id: nil,
managed_secret_id: nil,
secret_engine_id: nil
)
@account_id = account_id == nil ? "" : account_id
@action = action == nil ? "" : action
@created_at = created_at == nil ? nil : created_at
@debug = debug == nil ? "" : debug
@id = id == nil ? "" : id
@managed_secret_id = managed_secret_id == nil ? "" : managed_secret_id
@secret_engine_id = secret_engine_id == nil ? "" : secret_engine_id
end
|