Trait PayMode

Source
pub trait PayMode {
    // Required methods
    fn login(&self, code: &str) -> Result<JsonValue, String>;
    fn jsapi(
        &mut self,
        sub_mchid: &str,
        out_trade_no: &str,
        description: &str,
        total_fee: f64,
        notify_url: &str,
        sp_openid: &str,
    ) -> Result<JsonValue, String>;
    fn order_trade(
        &mut self,
        out_trade_no: &str,
        sub_mchid: &str,
    ) -> Result<JsonValue, String>;
    fn refunds(
        &mut self,
        sub_mchid: &str,
        out_trade_no: &str,
        transaction_id: &str,
        out_refund_no: &str,
        amount: f64,
        total: f64,
        currency: &str,
    ) -> Result<JsonValue, String>;
}

Required Methods§

Source

fn login(&self, code: &str) -> Result<JsonValue, String>

Source

fn jsapi( &mut self, sub_mchid: &str, out_trade_no: &str, description: &str, total_fee: f64, notify_url: &str, sp_openid: &str, ) -> Result<JsonValue, String>

JSAPI 支付

  • out_trade_no 商户订单号
  • sub_mchid 子商户号
  • description 商品名称
  • total_fee 支付金额
  • notify_url 通知地址
  • sp_openid 支付客户ID
Source

fn order_trade( &mut self, out_trade_no: &str, sub_mchid: &str, ) -> Result<JsonValue, String>

订单查询

  • out_trade_no 商户订单号
  • sub_mchid 子商户号
Source

fn refunds( &mut self, sub_mchid: &str, out_trade_no: &str, transaction_id: &str, out_refund_no: &str, amount: f64, total: f64, currency: &str, ) -> Result<JsonValue, String>

订单退款

Implementors§