src/app/_models/mappings.ts
Action object interface
Properties |
action |
action:
|
Type : string
|
Action performed |
approval |
approval:
|
Type : boolean
|
Action approval status. |
id |
id:
|
Type : number
|
Action ID |
role |
role:
|
Type : string
|
Admin's role in the system |
user |
user:
|
Type : string
|
Admin who initialized the action. |
interface Action {
/** Action performed */
action: string;
/** Action approval status. */
approval: boolean;
/** Action ID */
id: number;
/** Admin's role in the system */
role: string;
/** Admin who initialized the action. */
user: string;
}
/** @exports */
export { Action };