Mount
tibiawikisql.models.mount
¶
Classes:
| Name | Description |
|---|---|
Mount |
Represents a Mount. |
Mount
pydantic-model
¶
Bases: WikiEntry, WithStatus, WithVersion, WithImage, RowModel
Represents a Mount.
Show JSON schema:
{
"description": "Represents a Mount.",
"properties": {
"image": {
"anyOf": [
{
"format": "binary",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Image"
},
"version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Version"
},
"status": {
"title": "Status",
"type": "string"
},
"article_id": {
"title": "Article Id",
"type": "integer"
},
"title": {
"title": "Title",
"type": "string"
},
"timestamp": {
"format": "date-time",
"title": "Timestamp",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"speed": {
"title": "Speed",
"type": "integer"
},
"taming_method": {
"title": "Taming Method",
"type": "string"
},
"is_buyable": {
"title": "Is Buyable",
"type": "boolean"
},
"price": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Price"
},
"achievement": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Achievement"
},
"light_color": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Light Color"
},
"light_radius": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Light Radius"
}
},
"required": [
"version",
"status",
"article_id",
"title",
"timestamp",
"name",
"speed",
"taming_method",
"is_buyable",
"price",
"achievement",
"light_color",
"light_radius"
],
"title": "Mount",
"type": "object"
}
Fields:
-
image(bytes | None) -
version(str | None) -
status(str) -
article_id(int) -
title(str) -
timestamp(datetime) -
name(str) -
speed(int) -
taming_method(str) -
is_buyable(bool) -
price(int | None) -
achievement(str | None) -
light_color(int | None) -
light_radius(int | None)