pub struct GetAuthorizedPayment {
pub authorization_id: String,
}
Expand description
Generates the next invoice number that is available to the merchant.
The next invoice number uses the prefix and suffix from the last invoice number and increments the number by one.
For example, the next invoice number after INVOICE-1234
is INVOICE-1235
.
Fields§
The ID of the authorized payment for which to show details.
Implementations§
Trait Implementations§
Source§impl Clone for GetAuthorizedPayment
impl Clone for GetAuthorizedPayment
Source§fn clone(&self) -> GetAuthorizedPayment
fn clone(&self) -> GetAuthorizedPayment
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 GetAuthorizedPayment
impl Debug for GetAuthorizedPayment
Source§impl Default for GetAuthorizedPayment
impl Default for GetAuthorizedPayment
Source§fn default() -> GetAuthorizedPayment
fn default() -> GetAuthorizedPayment
Returns the “default value” for a type. Read more
Source§impl Endpoint for GetAuthorizedPayment
impl Endpoint for GetAuthorizedPayment
Source§type Response = AuthorizedPaymentDetails
type Response = AuthorizedPaymentDetails
The deserializable response 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 GetAuthorizedPayment
impl RefUnwindSafe for GetAuthorizedPayment
impl Send for GetAuthorizedPayment
impl Sync for GetAuthorizedPayment
impl Unpin for GetAuthorizedPayment
impl UnwindSafe for GetAuthorizedPayment
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