zhizhi/node_modules/dingtalk-jsapi/api/union/createPayOrder.d.ts

42 lines
1.1 KiB
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName createPayOrder
*/
export interface IUnionCreatePayOrderParams extends ICommonAPIParams {
bizScene: string;
corpId: string;
processInstanceId: string;
journeyBizNo: string;
orderList: {
outBizNo: string;
merchantId: string;
amount: string;
title: string;
goodsName: string;
remark: string;
}[];
controlStandard: string;
}
/**
*
* @apiName createPayOrder
*/
export interface IUnionCreatePayOrderResult {
code: string;
reason: string;
reasonRemark: string;
orderResultList: {
outBizNo: string;
enterprise_pay_info: string;
assignJointAccountId: string;
enterprisePayAmount: string;
}[];
}
/**
*
* @apiName createPayOrder
*/
export declare function createPayOrder$(params: IUnionCreatePayOrderParams): Promise<IUnionCreatePayOrderResult>;
export default createPayOrder$;