//! This code was AUTOGENERATED using the Codama library.
/// Used to record key details of the last few liquidation events on the account
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct LiquidationEntry {
/// Dollar amount seized
/// * An f64 stored as bytes
pub asset_amount_seized: [u8; 8],
/// Dollar amount repaid
/// * An f64 stored as bytes
pub liab_amount_repaid: [u8; 8],
pub placeholder0: u64,
pub timestamp: i64,
pub reserved0: [u8; 16],
}