Sha256: e459afe6bc66e6f0b52b3f814b129e40ddc17e061ac47fc499b7263dcb979dbe
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 Bytes
Contents
module TD::Types # Describes a video note. # The video must be equal in width and height, cropped to a circle, and stored in MPEG4 format. # # @attr duration [Integer] Duration of the video, in seconds; as defined by the sender. # @attr length [Integer] Video width and height; as defined by the sender. # @attr minithumbnail [TD::Types::Minithumbnail, nil] Video minithumbnail; may be null. # @attr thumbnail [TD::Types::Thumbnail, nil] Video thumbnail in JPEG format; as defined by the sender; may be null. # @attr video [TD::Types::File] File containing the video. class VideoNote < Base attribute :duration, TD::Types::Integer attribute :length, TD::Types::Integer attribute :minithumbnail, TD::Types::Minithumbnail.optional.default(nil) attribute :thumbnail, TD::Types::Thumbnail.optional.default(nil) attribute :video, TD::Types::File end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/video_note.rb |