import { IApiAuthorize } from "./ApiAuthorize.interface"; export interface ISendSmsMessageParams extends IApiAuthorize { Phone: string; Content: string; SmsType?: string; Brandname?: string; Sandbox?: string; IsUnicode?: string; PartnerSource?: string; }