Commits
Art Lowel authored dea6638c1fa
47 47 | @autoserialize |
48 48 | okay: boolean; |
49 49 | |
50 50 | /** |
51 51 | * If the auth status represents an authenticated state |
52 52 | */ |
53 53 | @autoserialize |
54 54 | authenticated: boolean; |
55 55 | |
56 56 | /** |
57 - | * The HALLinks for this AuthStatus |
57 + | * The {@link HALLink}s for this AuthStatus |
58 58 | */ |
59 59 | @deserialize |
60 60 | _links: { |
61 61 | self: HALLink; |
62 62 | eperson: HALLink; |
63 63 | }; |
64 64 | |
65 65 | /** |
66 66 | * The EPerson of this auth status |
67 - | * Will be undefined unless the eperson HALLink has been resolved. |
67 + | * Will be undefined unless the eperson {@link HALLink} has been resolved. |
68 68 | */ |
69 69 | @link(EPERSON) |
70 70 | eperson?: Observable<RemoteData<EPerson>>; |
71 71 | |
72 72 | /** |
73 73 | * True if the token is valid, false if there was no token or the token wasn't valid |
74 74 | */ |
75 75 | @autoserialize |
76 76 | token?: AuthTokenInfo; |
77 77 | |