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