export declare const PDD_OPEN_MSG_SERVICE_QUERY_MSG_RECORD = "pdd.open.msg.service.query.msg.record"; /** * 接口名称:查询短信发送记录 * 接口标识:pdd.open.msg.service.query.msg.record * 接口使用场景:查询短信发送记录 **/ export interface PddOpenMsgServiceQueryMsgRecordRequestInterface { /** * @description: 短信发送流水 * @type: string * @default: **/ biz_id?: string; /** * @description: 分页参数,页码 * @type: number * @default: **/ page_number: number; /** * @description: 分页参数,每页数量。最大值50 * @type: number * @default: **/ page_size: number; /** * @description: 查询手机号码 * @type: string * @default: **/ phone_number: string; /** * @description: 短信发送日期,支持近30天记录查询,格式yyyyMMdd * @type: string * @default: **/ send_date: string; } /** * 接口名称:查询短信发送记录 * 接口标识:pdd.open.msg.service.query.msg.record * 接口使用场景:查询短信发送记录 **/ export interface PddOpenMsgServiceQueryMsgRecordResponseInterface { /** * @description: 请求ID * @type: string * @default: **/ request_id: string; /** * @description: 请求状态码 * @type: string * @default: **/ result_code: string; /** * @description: 状态码描述 * @type: string * @default: **/ result_message: string; /** * @description: 短信发送明细列表 * @type: PddOpenMsgServiceQueryMsgRecordSmsSendDetailsResponseInterface[] * @default: * **/ sms_send_details: PddOpenMsgServiceQueryMsgRecordSmsSendDetailsResponseInterface[]; /** * @description: 短信发送总条数 * @type: number * @default: **/ total_count: number; } /** * @description 短信发送明细列表 * @default * @example **/ export interface PddOpenMsgServiceQueryMsgRecordSmsSendDetailsResponseInterface { /** * @description: 模板内容 * @type: string * @default: **/ content: string; /** * @description: 错误码 * @type: string | number * @default: **/ error_code: string | number; /** * @description: 外部id * @type: string * @default: **/ out_id: string; /** * @description: 手机号码 * @type: string * @default: **/ phone_number: string; /** * @description: 接收时间 * @type: string * @default: **/ receive_time: string; /** * @description: 发送状态 * @type: number * @default: **/ send_status: number; /** * @description: 发送时间 * @type: string * @default: **/ send_time: string; /** * @description: 模板ID * @type: string | number * @default: **/ template_code: string | number; }