/** * @author songxiwen * @date 2020/08/04 12:28 */ export type SendStatusSetItem = { SerialNo: string; PhoneNumber: string; Fee: number; SessionContext: string; Code: string; Message: string; IsoCode: string; }; export type SMSResponse = { SendStatusSet: SendStatusSetItem[]; RequestId: string; Error?: { Code: string; Message: string }; }; export type SMSPromiseResponse = { message: string; data: { smsCode: string; }; }; export type RequestType = { Action: string; Version: string; PhoneNumberSet: string[]; TemplateID: string; SmsSdkAppid: string; Region?: string; Sign?: string; TemplateParamSet?: string[]; ExtendCode?: string; SessionContext?: string; SenderId?: string; };