export type IEIoTUserCredentialsTokenReq = { UserName: string; Password: string; } export type IEIoTUserClaim = { Id: number; UserId: string; ClaimType: string; ClaimValue: string; } export type IEIoTAuthRes = { access_token: string; expires_in: number; token_type: string; scope: string; user_id: number; claims: IEIoTUserClaim[]; }