| | |
| | | } |
| | | ); |
| | | } |
| | | |
| | | async setLifePayOrderPayType(body: SetLifePayOrderPayTypeInput, options?: RequestConfig) { |
| | | return this.request<string>('/api/LifePay/SetLifePayOrderPayType', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | } |
| | | |
| | | export interface PhoneMesssageCodeLoginInput { |
| | |
| | | |
| | | export interface LifePhoneDataCreateLifePayOrderInput { |
| | | userId?: string; |
| | | lifePayType?: LifeRechargeConstants.LifePayTypeEnum; |
| | | productData?: LifePhoneData; |
| | | } |
| | | |
| | |
| | | |
| | | export interface CreateLifePayOrderOutput { |
| | | orderNo?: string; |
| | | payUrl?: string; |
| | | } |
| | | |
| | | export interface LifeElectricDataCreateLifePayOrderInput { |
| | | userId?: string; |
| | | lifePayType?: LifeRechargeConstants.LifePayTypeEnum; |
| | | productData?: LifeElectricData; |
| | | } |
| | | |
| | |
| | | export interface APIgetPayStatusByOrderNoParams { |
| | | orderNo?: string; |
| | | } |
| | | |
| | | export interface SetLifePayOrderPayTypeInput { |
| | | orderNo: string; |
| | | lifePayType?: LifeRechargeConstants.LifePayTypeEnum; |
| | | } |