export class Permission { constructor(public name: Name) { this.name = name; } toJSON() { return { name: this.name, }; } }