pub struct CaptureOrder {
pub order_id: String,
pub body: PaymentSourceBody,
}
Expand description
Captures payment for an order. To successfully capture payment for an order, the buyer must first approve the order or a valid payment_source must be provided in the request. A buyer can approve the order upon being redirected to the rel:approve URL that was returned in the HATEOAS links in the create order response.
Fields§
§order_id: String
The id of the order.
body: PaymentSourceBody
The endpoint body.
Implementations§
Trait Implementations§
Source§impl Clone for CaptureOrder
impl Clone for CaptureOrder
Source§fn clone(&self) -> CaptureOrder
fn clone(&self) -> CaptureOrder
Returns a copy 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 moreSource§impl Debug for CaptureOrder
impl Debug for CaptureOrder
Source§impl Endpoint for CaptureOrder
impl Endpoint for CaptureOrder
Source§type Body = PaymentSourceBody
type Body = PaymentSourceBody
The serializable body type.
Source§fn relative_path(&self) -> Cow<'_, str>
fn relative_path(&self) -> Cow<'_, str>
The endpoint relative path. Must start with a
/
Auto Trait Implementations§
impl Freeze for CaptureOrder
impl RefUnwindSafe for CaptureOrder
impl Send for CaptureOrder
impl Sync for CaptureOrder
impl Unpin for CaptureOrder
impl UnwindSafe for CaptureOrder
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