Class: Yardi::Parameter::Property
- Inherits:
-
Object
- Object
- Yardi::Parameter::Property
- Defined in:
- lib/yardi/parameter/property.rb
Instance Attribute Summary collapse
-
#first_contact_time ⇒ Object
readonly
Returns the value of attribute first_contact_time.
-
#remote_id ⇒ Object
readonly
Returns the value of attribute remote_id.
-
#tour_notes ⇒ Object
readonly
Returns the value of attribute tour_notes.
-
#tour_remote_id ⇒ Object
readonly
Returns the value of attribute tour_remote_id.
-
#tour_time ⇒ Object
readonly
Returns the value of attribute tour_time.
Instance Method Summary collapse
-
#initialize(remote_id:, first_contact_time:, tour_notes: nil, tour_remote_id: nil, tour_time: nil) ⇒ Property
constructor
A new instance of Property.
Constructor Details
#initialize(remote_id:, first_contact_time:, tour_notes: nil, tour_remote_id: nil, tour_time: nil) ⇒ Property
Returns a new instance of Property.
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/yardi/parameter/property.rb', line 20 def initialize( remote_id:, first_contact_time:, tour_notes: nil, tour_remote_id: nil, tour_time: nil ) @first_contact_time = first_contact_time @remote_id = remote_id @tour_notes = tour_notes @tour_remote_id = tour_remote_id @tour_time = tour_time end |
Instance Attribute Details
#first_contact_time ⇒ Object (readonly)
Returns the value of attribute first_contact_time.
4 5 6 |
# File 'lib/yardi/parameter/property.rb', line 4 def first_contact_time @first_contact_time end |
#remote_id ⇒ Object (readonly)
Returns the value of attribute remote_id.
4 5 6 |
# File 'lib/yardi/parameter/property.rb', line 4 def remote_id @remote_id end |
#tour_notes ⇒ Object (readonly)
Returns the value of attribute tour_notes.
4 5 6 |
# File 'lib/yardi/parameter/property.rb', line 4 def tour_notes @tour_notes end |
#tour_remote_id ⇒ Object (readonly)
Returns the value of attribute tour_remote_id.
4 5 6 |
# File 'lib/yardi/parameter/property.rb', line 4 def tour_remote_id @tour_remote_id end |
#tour_time ⇒ Object (readonly)
Returns the value of attribute tour_time.
4 5 6 |
# File 'lib/yardi/parameter/property.rb', line 4 def tour_time @tour_time end |