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