marsol
Version:
Marsol.ly services JS SDK
26 lines (25 loc) • 405 B
TypeScript
/**
*
* @export
* @interface SignupOTPResponse
*/
export interface SignupOTPResponse {
/**
*
* @type {number}
* @memberof SignupOTPResponse
*/
expiration: number;
/**
*
* @type {string}
* @memberof SignupOTPResponse
*/
requestId: string;
/**
*
* @type {string}
* @memberof SignupOTPResponse
*/
resendToken: string;
}