//! This code was AUTOGENERATED using the Codama library.
use crate::types::PendingSharesToVest;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct LpPosition {
pub reward_factor_snapshot: u128,
pub lp_shares: u64,
pub withdrawable_lp_shares: u64,
pub uncollected_fees: u64,
pub collected_fees: u64,
pub pending_shares_to_vest: PendingSharesToVest,
}