/// FungibleTokenPacketData defines a struct for the packet payload /// See FungibleTokenPacketData spec: /// #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct FungibleTokenPacketData { /// the token denomination to be transferred #[prost(string, tag = "1")] pub denom: ::prost::alloc::string::String, /// the token amount to be transferred #[prost(string, tag = "2")] pub amount: ::prost::alloc::string::String, /// the sender address #[prost(string, tag = "3")] pub sender: ::prost::alloc::string::String, /// the recipient address on the destination chain #[prost(string, tag = "4")] pub receiver: ::prost::alloc::string::String, /// optional memo #[prost(string, tag = "5")] pub memo: ::prost::alloc::string::String, }