Browser-Strutture-Musa/src/api/models/get-privileges-res-dto.ts
2025-11-13 14:03:34 +01:00

46 lines
747 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/* Code generated by ng-openapi-gen DO NOT EDIT. */
export interface GetPrivilegesResDto {
/**
* Identifier of the associated account
*/
accountId: number;
/**
* Human-readable name of the action
*/
action: string;
/**
* Code representing the action
*/
actionCode: string;
/**
* Identifier of the action associated with this privilege
*/
actionId: number;
/**
* Human-readable name of the action
*/
flagEnabled: boolean;
/**
* Human-readable name of the action
*/
flagReadOnly: boolean;
/**
* Unique identifier for the privilege
*/
id: number;
/**
* Username of the account with this privilege
*/
username: string;
}