AlipayFaceOrderPayResponse

Struct AlipayFaceOrderPayResponse 

Source
pub struct AlipayFaceOrderPayResponse {
Show 16 fields pub out_trade_no: String, pub trade_no: String, pub buyer_logon_id: String, pub total_amount: f64, pub gmt_payment: String, pub fund_bill_list: Option<Vec<TradeFundBill>>, pub store_name: Option<String>, pub buyer_user_id: String, pub discount_goods_detail: Option<String>, pub voucher_detail_list: Option<VoucherDetail>, pub mdiscount_amount: Option<String>, pub discount_amount: Option<String>, pub buyer_pay_amount: Option<f64>, pub point_amount: Option<f64>, pub invoice_amount: Option<f64>, pub receipt_amount: Option<String>,
}
Expand description

当面付响应

Fields§

§out_trade_no: String

商家订单号

§trade_no: String

支付宝交易号

§buyer_logon_id: String

买家支付宝账号

§total_amount: f64

交易的订单金额,单位为元,两位小数。该参数的值为支付时传入的total_amount

§gmt_payment: String

交易支付时间

§fund_bill_list: Option<Vec<TradeFundBill>>

交易支付使用的资金渠道。 只有在签约中指定需要返回资金明细,或者入参的query_options中指定时才返回该字段信息。

§store_name: Option<String>

请求交易支付中的商户店铺的名称

§buyer_user_id: String

买家在支付宝的用户id

§discount_goods_detail: Option<String>

本次交易支付所使用的单品券优惠的商品优惠信息。 只有在query_options中指定时才返回该字段信息。

§voucher_detail_list: Option<VoucherDetail>

本交易支付时使用的所有优惠券信息。 只有在query_options中指定时才返回该字段信息。

§mdiscount_amount: Option<String>

商家优惠金额

§discount_amount: Option<String>

平台优惠金额

§buyer_pay_amount: Option<f64>

买家实付金额,单位为元,两位小数。该金额代表该笔交易买家实际支付的金额,不包含商户折扣等金额

§point_amount: Option<f64>

积分支付的金额,单位为元,两位小数。该金额代表该笔交易中用户使用积分支付的金额,比如集分宝或者支付宝实时优惠等

§invoice_amount: Option<f64>

交易中用户支付的可开具发票的金额,单位为元,两位小数。该金额代表该笔交易中可以给用户开具发票的金额

§receipt_amount: Option<String>

实收金额,单位为元,两位小数。该金额为本笔交易,商户账户能够实际收到的金额

Trait Implementations§

Source§

impl Debug for AlipayFaceOrderPayResponse

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for AlipayFaceOrderPayResponse

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for AlipayFaceOrderPayResponse

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> XmlMessageParser for T

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,