7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
export default interface AuthDetailsRepresentation {
|
|
clientId?: string;
|
|
ipAddress?: string;
|
|
realmId?: string;
|
|
userId?: string;
|
|
}
|