Class: Traceparts::CadFormat

Inherits:
Object
  • Object
show all
Defined in:
lib/traceparts/cad_format.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, data) ⇒ CadFormat

Returns a new instance of CadFormat.



5
6
7
8
9
10
# File 'lib/traceparts/cad_format.rb', line 5

def initialize(client, data)
  @client = client

  @id = data.fetch('cadFormatId')
  @name = data.fetch('cadFormatName')
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/traceparts/cad_format.rb', line 3

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/traceparts/cad_format.rb', line 3

def name
  @name
end