telepathy/src/telepathy/model/user.cr

15 lines
271 B
Crystal

require "json"
module Telepathy
class User
JSON.mapping(
id: Int64,
is_bot: Bool,
first_name: String,
last_name: String?,
username: String?,
language_code: String?
)
end
end