telepathy/src/telepathy/model/document.cr

15 lines
276 B
Crystal

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