1// @generated by jacquard-lexicon. DO NOT EDIT.
2//
3// Lexicon: app.bsky.embed.defs
4//
5// This file was automatically generated from Lexicon schemas.
6// Any manual changes will be overwritten on the next regeneration.
7
8pub mod external;
9pub mod images;
10pub mod record;
11pub mod record_with_media;
12pub mod video;
13
14/// width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit.
15#[jacquard_derive::lexicon]
16#[derive(
17 serde::Serialize,
18 serde::Deserialize,
19 Debug,
20 Clone,
21 PartialEq,
22 Eq,
23 jacquard_derive::IntoStatic,
24 bon::Builder
25)]
26#[serde(rename_all = "camelCase")]
27pub struct AspectRatio<'a> {
28 pub height: i64,
29 pub width: i64,
30}