Class: Dynamicloud::API::Model::RecordFieldItem

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

Overview

Represents the field’s items

Author:

  • Eleazar Gomez

Since:

  • 9/3/15

Version:

  • 1.0.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRecordFieldItem

Returns a new instance of RecordFieldItem.

Since:

  • 9/3/15



78
79
80
81
# File 'lib/dynamic_model.rb', line 78

def initialize
  @value = ''
  @text = ''
end

Instance Attribute Details

#textObject

Since:

  • 9/3/15



76
77
78
# File 'lib/dynamic_model.rb', line 76

def text
  @text
end

#valueObject

Since:

  • 9/3/15



76
77
78
# File 'lib/dynamic_model.rb', line 76

def value
  @value
end