telepathy/src/telepathy/model/video.cr

17 lines
323 B
Crystal

require "json"
require "./photo_size.cr"
module Telepathy
class Video
JSON.mapping(
file_id: String,
width: Int64,
height: Int64,
duration: Int64,
thumb: PhotoSize?,
mime_type: String?,
file_size: Int64?
)
end
end