@dritelabs/accounts-protobuf
Version:
Accounts database module
19 lines (17 loc) • 476 B
TypeScript
interface AuthenticateUserResponse {
'id'?: (string);
'email'?: (string);
'accessToken'?: (string);
'refreshToken'?: (string);
'tokenType'?: (string);
'expiresIn'?: (number);
}
interface AuthenticateUserResponse__Output {
'id': (string);
'email': (string);
'accessToken': (string);
'refreshToken': (string);
'tokenType': (string);
'expiresIn': (number);
}
export { AuthenticateUserResponse, AuthenticateUserResponse__Output };