@lantsang/nestjs-ucpaas-sms
Version:
nestjs 云之讯平台短信集成插件
31 lines (30 loc) • 704 B
TypeScript
import { UcpaasBaseResponse } from '../base.ucpaas.interface';
/** 根据模板发送单条短信返回类型 */
export interface UcpaasSendSmsResponse extends UcpaasBaseResponse {
/**
* 计费条数
* @example '1'
*/
count: string;
/**
* 创建时间
* @description 格式YYYY-MM-DD hh:mm:ss
* @example 2021-06-22 14:34:46
*/
create_date: string;
/**
* 短信唯一id
* @example 8cc440aceb0e36d6847f69758537eb8c
*/
smsid: string;
/**
* 手机号码
* @example 18088888888
*/
mobile: string;
/**
* 请求时透传的uid
* @description 此部分是请求是传入的
*/
uid: string;
}