21 lines
509 B
Python
21 lines
509 B
Python
"""
|
|
Created by auto_sdk on 2021.01.31
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiDingpayOrderApplypayRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.apply_pay_operator_userid = None
|
|
self.extension = None
|
|
self.order_nos = None
|
|
self.pay_channel = None
|
|
self.pay_channel_payer_real_uid = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.dingpay.order.applypay'
|