pub struct ExecutePayoutActionParams {
pub payout_id: String,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method [execute_payout_action
]
Fields§
§payout_id: String
the payout id received from the creation of the payout instruction set
idempotency_key: Option<String>
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl ExecutePayoutActionParams
impl ExecutePayoutActionParams
Sourcepub fn builder() -> ExecutePayoutActionParamsBuilder
pub fn builder() -> ExecutePayoutActionParamsBuilder
Create an instance of ExecutePayoutActionParams
using the builder syntax
Trait Implementations§
Source§impl Clone for ExecutePayoutActionParams
impl Clone for ExecutePayoutActionParams
Source§fn clone(&self) -> ExecutePayoutActionParams
fn clone(&self) -> ExecutePayoutActionParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ExecutePayoutActionParams
impl RefUnwindSafe for ExecutePayoutActionParams
impl Send for ExecutePayoutActionParams
impl Sync for ExecutePayoutActionParams
impl Unpin for ExecutePayoutActionParams
impl UnwindSafe for ExecutePayoutActionParams
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