Skip to main content

atrium_api/app/bsky/embed/
defs.rs

1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `app.bsky.embed.defs` namespace.
3///width:height represents an aspect ratio. It may be approximate, and may not correspond to absolute dimensions in any given unit.
4#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
5#[serde(rename_all = "camelCase")]
6pub struct AspectRatioData {
7    pub height: core::num::NonZeroU64,
8    pub width: core::num::NonZeroU64,
9}
10pub type AspectRatio = crate::types::Object<AspectRatioData>;