Sha256: d888bde6eeacede176e525e8f2235351e8e68d13ce145b3fc7f91f903a95a7cc
Contents?: true
Size: 356 Bytes
Versions: 1
Compression:
Stored size: 356 Bytes
Contents
module TD::Types # Represents a date according to the Gregorian calendar. # # @attr day [Integer] Day of the month; 1-31. # @attr month [Integer] Month; 1-12. # @attr year [Integer] Year; 1-9999. class Date < Base attribute :day, TD::Types::Integer attribute :month, TD::Types::Integer attribute :year, TD::Types::Integer end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/date.rb |