Class: Etapper::API::RecurringSchedule
- Inherits:
-
Object
- Object
- Etapper::API::RecurringSchedule
- Defined in:
- lib/etapper/api/service.rb
Overview
Instance Attribute Summary collapse
-
#frequency ⇒ Object
Returns the value of attribute frequency.
-
#measure ⇒ Object
Returns the value of attribute measure.
-
#startDate ⇒ Object
Returns the value of attribute startDate.
-
#stopDate ⇒ Object
Returns the value of attribute stopDate.
Instance Method Summary collapse
-
#initialize(frequency = nil, measure = nil, startDate = nil, stopDate = nil) ⇒ RecurringSchedule
constructor
A new instance of RecurringSchedule.
Constructor Details
#initialize(frequency = nil, measure = nil, startDate = nil, stopDate = nil) ⇒ RecurringSchedule
Returns a new instance of RecurringSchedule.
1606 1607 1608 1609 1610 1611 |
# File 'lib/etapper/api/service.rb', line 1606 def initialize(frequency = nil, measure = nil, startDate = nil, stopDate = nil) @frequency = frequency @measure = measure @startDate = startDate @stopDate = stopDate end |
Instance Attribute Details
#frequency ⇒ Object
Returns the value of attribute frequency.
1601 1602 1603 |
# File 'lib/etapper/api/service.rb', line 1601 def frequency @frequency end |
#measure ⇒ Object
Returns the value of attribute measure.
1602 1603 1604 |
# File 'lib/etapper/api/service.rb', line 1602 def measure @measure end |
#startDate ⇒ Object
Returns the value of attribute startDate.
1603 1604 1605 |
# File 'lib/etapper/api/service.rb', line 1603 def startDate @startDate end |
#stopDate ⇒ Object
Returns the value of attribute stopDate.
1604 1605 1606 |
# File 'lib/etapper/api/service.rb', line 1604 def stopDate @stopDate end |