Sha256: 598aebc0b3f80e857336ee7b81c157520dcbe39a7432933b907d19b4a2bdb35e
Contents?: true
Size: 381 Bytes
Versions: 2
Compression:
Stored size: 381 Bytes
Contents
module TD::Types # Represents a date range. # # @attr start_date [Integer] Point in time (Unix timestamp) at which the date range begins. # @attr end_date [Integer] Point in time (Unix timestamp) at which the date range ends. class DateRange < Base attribute :start_date, TD::Types::Coercible::Integer attribute :end_date, TD::Types::Coercible::Integer end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/date_range.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/date_range.rb |