Sha256: 72bb38cc669b3c3a0df5b0ab3ee91a890d28bc0c7e3f5172c68c1f638bcb31b0
Contents?: true
Size: 1.61 KB
Versions: 5
Compression:
Stored size: 1.61 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::V6_3_0_9 module Models # # Defines a time range in a 24 hour day specified by a start and end time. # class TimeRange include MsRestAzure # @return [TimeOfDay] Defines an hour and minute of the day specified in # 24 hour time. attr_accessor :start_time # @return [TimeOfDay] Defines an hour and minute of the day specified in # 24 hour time. attr_accessor :end_time # # Mapper for TimeRange class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TimeRange', type: { name: 'Composite', class_name: 'TimeRange', model_properties: { start_time: { client_side_validation: true, required: false, serialized_name: 'StartTime', type: { name: 'Composite', class_name: 'TimeOfDay' } }, end_time: { client_side_validation: true, required: false, serialized_name: 'EndTime', type: { name: 'Composite', class_name: 'TimeOfDay' } } } } } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems