Class: Seam::Resources::Device::Properties::OnlineTimeFrameOptions::TimePairs

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/seam/resources/device.rb

Instance Attribute Summary collapse

Attributes inherited from BaseResource

#client, #data

Method Summary

Methods inherited from BaseResource

#[], date_accessor, #initialize, #inspect, load_from_response, resource_accessor, resource_accessors, resource_list_accessor, resource_list_accessors, #update_from_response

Constructor Details

This class inherits a constructor from Seam::Resources::BaseResource

Instance Attribute Details

#display_nameString

Label for the start/end time pairing.

Returns:

  • (String)


1027
1028
1029
# File 'lib/seam/resources/device.rb', line 1027

def display_name
  @display_name
end

#end_timeString

End time of day as a 24-hour HH:MM value, interpreted in the option's time_zone. An end_time earlier on the clock than start_time means the end falls on a later date.

Returns:

  • (String)


1030
1031
1032
# File 'lib/seam/resources/device.rb', line 1030

def end_time
  @end_time
end

#start_timeString

Start time of day as a 24-hour HH:MM value, interpreted in the option's time_zone.

Returns:

  • (String)


1033
1034
1035
# File 'lib/seam/resources/device.rb', line 1033

def start_time
  @start_time
end