Struct paystack::TransactionSplitResponse
source · pub struct TransactionSplitResponse {
pub status: bool,
pub message: String,
pub data: SplitData,
}
Expand description
Represents the JSON response containing percentage split information.
Fields§
§status: bool
The status of the JSON response.
message: String
The message associated with the JSON response.
data: SplitData
The percentage split data.
Trait Implementations§
source§impl Debug for TransactionSplitResponse
impl Debug for TransactionSplitResponse
source§impl<'de> Deserialize<'de> for TransactionSplitResponse
impl<'de> Deserialize<'de> for TransactionSplitResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for TransactionSplitResponse
impl Send for TransactionSplitResponse
impl Sync for TransactionSplitResponse
impl Unpin for TransactionSplitResponse
impl UnwindSafe for TransactionSplitResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more