pub struct PixInput {
pub end_to_end_id: String,
pub txid: Option<String>,
pub chave: String,
pub valor: String,
pub horario: String,
pub info_pagador: Option<String>,
pub devolucoes: Option<Vec<Devolucoes>>,
pub tipo: Option<String>,
pub status: Option<String>,
}
Fields§
§end_to_end_id: String
§txid: Option<String>
Transaction id
chave: String
Beneficiary’s Pix Key
valor: String
§horario: String
§info_pagador: Option<String>
§devolucoes: Option<Vec<Devolucoes>>
§tipo: Option<String>
§status: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PixInput
impl<'de> Deserialize<'de> for PixInput
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
impl StructuralPartialEq for PixInput
Auto Trait Implementations§
impl Freeze for PixInput
impl RefUnwindSafe for PixInput
impl Send for PixInput
impl Sync for PixInput
impl Unpin for PixInput
impl UnwindSafe for PixInput
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