typed-douyin-openapi
Version:
16 lines (15 loc) • 385 B
TypeScript
import { OpenapiBase } from './openapi_base';
export declare abstract class OpenapiCustomer extends OpenapiBase {
/**
* 获取官方平台客服链接
*/
customerServiceUrl(data: {
openid: string;
type: '1128' | '2329';
order_id?: string;
im_type?: 'group_buy';
}): Promise<{
log_id: string;
url: string;
}>;
}