atrium_api/com/atproto/lexicon/schema.rs
1// @generated - This file is generated by atrium-codegen. DO NOT EDIT.
2//!Definitions for the `com.atproto.lexicon.schema` namespace.
3#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
4#[serde(rename_all = "camelCase")]
5pub struct RecordData {
6 ///Indicates the 'version' of the Lexicon language. Must be '1' for the current atproto/Lexicon schema system.
7 pub lexicon: i64,
8}
9pub type Record = crate::types::Object<RecordData>;