mightstone.services.scryfall.models.Preview

pydantic model mightstone.services.scryfall.models.Preview

Show JSON schema
{
   "title": "Preview",
   "type": "object",
   "properties": {
      "previewed_at": {
         "anyOf": [
            {
               "format": "date",
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Previewed At"
      },
      "source_uri": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Source Uri"
      },
      "source": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Source"
      }
   }
}

Fields:
field previewed_at: date | None = None

The date this card was previewed

field source: str | None = None

The name of the source that previewed this card.

field source_uri: str | None = None

A link to the preview for this card.