src/app/models/permission.ts
Properties |
details |
details:
|
Type : string
|
provider |
provider:
|
Type : string
|
type |
type:
|
Type : PermissionType
|
import { PermissionType } from '../enums/permission-type';
export interface IPermission {
type: PermissionType;
provider: string;
details: string;
}
export class Permission {
type: PermissionType;
provider: string;
details: string;
constructor(cfg?: IPermission) {
if (!cfg) {
return;
}
this.type = cfg.type !== null && cfg.type !== undefined ? cfg.type : undefined;
this.provider = cfg.provider ? cfg.provider : undefined;
this.details = cfg.details ? cfg.details : undefined;
}
get canCredit(): boolean {
return this.type === PermissionType.Credit;
}
get canDebit(): boolean {
return this.type === PermissionType.Debit;
}
}