pub struct RecurringWithdrawPriceRecurring {
pub amount: Option<String>,
pub input_or_output: RecurringWithdrawal,
pub order: String,
pub user: String,
}Expand description
DEPRECATED: Price-based recurring orders are deprecated
Fields§
§amount: Option<String>If no amount is provided, it will withdraw the entire amount
Constraint: minimum=0
input_or_output: RecurringWithdrawal§order: StringBase-58 account which is the Recurring Order account
user: StringImplementations§
Source§impl RecurringWithdrawPriceRecurring
impl RecurringWithdrawPriceRecurring
Sourcepub fn new(
input_or_output: RecurringWithdrawal,
order: String,
user: String,
) -> Self
pub fn new( input_or_output: RecurringWithdrawal, order: String, user: String, ) -> Self
Construct this request with every required wire field.
Sourcepub fn builder(
input_or_output: RecurringWithdrawal,
order: String,
user: String,
) -> RecurringWithdrawPriceRecurringBuilder
pub fn builder( input_or_output: RecurringWithdrawal, order: String, user: String, ) -> RecurringWithdrawPriceRecurringBuilder
Start a dependency-free builder with every required wire field.
Trait Implementations§
Source§impl Clone for RecurringWithdrawPriceRecurring
impl Clone for RecurringWithdrawPriceRecurring
Source§fn clone(&self) -> RecurringWithdrawPriceRecurring
fn clone(&self) -> RecurringWithdrawPriceRecurring
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<'de> Deserialize<'de> for RecurringWithdrawPriceRecurring
impl<'de> Deserialize<'de> for RecurringWithdrawPriceRecurring
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 RecurringWithdrawPriceRecurring
impl RefUnwindSafe for RecurringWithdrawPriceRecurring
impl Send for RecurringWithdrawPriceRecurring
impl Sync for RecurringWithdrawPriceRecurring
impl Unpin for RecurringWithdrawPriceRecurring
impl UnsafeUnpin for RecurringWithdrawPriceRecurring
impl UnwindSafe for RecurringWithdrawPriceRecurring
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