File

src/app/models/permission.ts

Index

Properties
Accessors

Constructor

constructor(cfg?: IPermission)
Parameters :
Name Type Optional
cfg IPermission Yes

Properties

details
Type : string
provider
Type : string
type
Type : PermissionType

Accessors

canCredit
getcanCredit()
canDebit
getcanDebit()
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;
  }
}

results matching ""

    No results matching ""