class Dynamicloud::API::Model::RecordModel

Attributes

description[RW]
id[RW]
name[RW]

Public Class Methods

new(id) click to toggle source

Constructs a model using its ID with Mapper @param id model id

# File lib/dynamic_model.rb, line 13
def initialize(id)
  @id = id
  @name = nil
  @description = nil
end