@etsoo/smarterp-core
Version:
TypeScript APIs for SmartERP Core
28 lines (27 loc) • 464 B
TypeScript
import { AuthCodeAction } from "../../dto/authCode/AuthCodeAction";
/**
* Send SMS input request data
*/
export type SendSMSInputRQ = {
/**
* Template/action id
*/
action: AuthCodeAction;
/**
* Mobile number
*/
mobile: string;
};
/**
* Send SMS request data
*/
export type SendSMSRQ = SendSMSInputRQ & {
/**
* Device id
*/
deviceId: string;
/**
* Country or region
*/
region?: string;
};