Sha256: b39b564d7d13039b07bc1d18eba5bf6a322003e12b98c38822688be854c7d133
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_4_0_36 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