marsol
Version:
Marsol.ly services JS SDK
21 lines (20 loc) • 392 B
TypeScript
import { VerifyOTPResponseStatusEnum } from "./VerifyOTPResponseStatusEnum";
/**
*
* @export
* @interface VerifyOTPResponse
*/
export interface VerifyOTPResponse {
/**
*
* @type {string}
* @memberof VerifyOTPResponse
*/
status: VerifyOTPResponseStatusEnum;
/**
*
* @type {string}
* @memberof VerifyOTPResponse
*/
message: string;
}