Struct yapay_sdk_rust::webhooks::WebhookTransaction
source · [−]pub struct WebhookTransaction {Show 23 fields
pub order_number: String,
pub free: String,
pub transaction_id: String,
pub status_name: String,
pub status_id: String,
pub date_transaction: String,
pub split: String,
pub price_payment: String,
pub date_payment: String,
pub seller_token: String,
pub transaction_token: String,
pub token_transaction: String,
pub price_seller: String,
pub price_original: String,
pub price_additional: String,
pub price_discount: String,
pub shipping_price: String,
pub shipping_type: String,
pub payment_method_id: String,
pub payment_method_name: String,
pub customer: Customer,
pub company: Company,
pub payment: Payment,
}
Fields
order_number: String
free: String
transaction_id: String
status_name: String
status_id: String
date_transaction: String
split: String
price_payment: String
date_payment: String
seller_token: String
transaction_token: String
token_transaction: String
price_seller: String
price_original: String
price_additional: String
price_discount: String
shipping_price: String
shipping_type: String
payment_method_id: String
payment_method_name: String
customer: Customer
company: Company
payment: Payment
Trait Implementations
sourceimpl Clone for WebhookTransaction
impl Clone for WebhookTransaction
sourcefn clone(&self) -> WebhookTransaction
fn clone(&self) -> WebhookTransaction
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for WebhookTransaction
impl Debug for WebhookTransaction
sourceimpl Default for WebhookTransaction
impl Default for WebhookTransaction
sourcefn default() -> WebhookTransaction
fn default() -> WebhookTransaction
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for WebhookTransaction
impl<'de> Deserialize<'de> for WebhookTransaction
sourcefn 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
sourceimpl PartialEq<WebhookTransaction> for WebhookTransaction
impl PartialEq<WebhookTransaction> for WebhookTransaction
sourcefn eq(&self, other: &WebhookTransaction) -> bool
fn eq(&self, other: &WebhookTransaction) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &WebhookTransaction) -> bool
fn ne(&self, other: &WebhookTransaction) -> bool
This method tests for !=
.
sourceimpl Serialize for WebhookTransaction
impl Serialize for WebhookTransaction
impl StructuralPartialEq for WebhookTransaction
Auto Trait Implementations
impl RefUnwindSafe for WebhookTransaction
impl Send for WebhookTransaction
impl Sync for WebhookTransaction
impl Unpin for WebhookTransaction
impl UnwindSafe for WebhookTransaction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more