//! This code was AUTOGENERATED using the Codama library.
/// Represents the parameters for initializing a new token mint
/// # Fields
/// * `decimals` - Number of decimal places for the token
/// * `name` - Name of the token
/// * `symbol` - Symbol/ticker of the token
/// * `uri` - URI pointing to token metadata
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct MintParams {
pub decimals: u8,
pub name: String,
pub symbol: String,
pub uri: String,
}