Class: Seam::Resources::Device::Properties::OfflineTimeFrameOptions::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

#[], aliased_accessor, attribute_aliases, date_accessor, discriminated_by, #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)


1307
1308
1309
# File 'lib/seam/resources/device.rb', line 1307

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)


1310
1311
1312
# File 'lib/seam/resources/device.rb', line 1310

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)


1313
1314
1315
# File 'lib/seam/resources/device.rb', line 1313

def start_time
  @start_time
end