marsol
Version:
Marsol.ly services JS SDK
32 lines (31 loc) • 468 B
text/typescript
/**
*
* @export
* @interface OtpResponse
*/
export interface OtpResponse {
/**
*
* @type {number}
* @memberof OtpResponse
*/
expiration: number;
/**
*
* @type {number}
* @memberof OtpResponse
*/
price: number;
/**
*
* @type {string}
* @memberof OtpResponse
*/
requestId: string;
/**
*
* @type {string}
* @memberof OtpResponse
*/
resendToken: string;
}