A fork of https://github.com/teal-fm/piper
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package bsky
4
5// schema: app.bsky.embed.defs
6
7// EmbedDefs_AspectRatio is a "aspectRatio" in the app.bsky.embed.defs schema.
8//
9// width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit.
10type EmbedDefs_AspectRatio struct {
11 Height int64 `json:"height" cborgen:"height"`
12 Width int64 `json:"width" cborgen:"width"`
13}