pub struct DebitRestrictionRequest {
pub pnd_type: String,
pub account_number: String,
}Expand description
Request body for debit-restriction (PND) management.
Server type: PndRequest.
Fields§
§pnd_type: StringThe restriction action. The portal documents "LiftPnd" to remove a
restriction; the place-restriction value is the symmetric counterpart
(commonly "PlacePnd"). Confirm the exact tokens with Wema for your
channel before relying on placement.
account_number: StringThe 10-digit NUBAN to apply the restriction change to.
Trait Implementations§
Source§impl Clone for DebitRestrictionRequest
impl Clone for DebitRestrictionRequest
Source§fn clone(&self) -> DebitRestrictionRequest
fn clone(&self) -> DebitRestrictionRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DebitRestrictionRequest
impl Debug for DebitRestrictionRequest
Source§impl<'de> Deserialize<'de> for DebitRestrictionRequest
impl<'de> Deserialize<'de> for DebitRestrictionRequest
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 Freeze for DebitRestrictionRequest
impl RefUnwindSafe for DebitRestrictionRequest
impl Send for DebitRestrictionRequest
impl Sync for DebitRestrictionRequest
impl Unpin for DebitRestrictionRequest
impl UnsafeUnpin for DebitRestrictionRequest
impl UnwindSafe for DebitRestrictionRequest
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