10 lines
149 B
TypeScript
10 lines
149 B
TypeScript
/**
|
|
* The VerificationSession object.
|
|
*/
|
|
export interface VerificationSession {
|
|
/**
|
|
* Unique identifier for the object.
|
|
*/
|
|
id: string;
|
|
}
|