Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
vid
/
66a29e45cf45b93017867931b2d3250ccae948c2
/
.
/
vid-webpack-master
/
src
/
app
/
shared
/
models
/
tenant.ts
blob: 234f1dbffe2ac7dd7ac369ef8ac8dd130d8481fe [
file
] [
log
] [
blame
]
export
class
Tenant
{
id
:
string
;
name
:
string
;
isPermitted
:
boolean
;
constructor
(
serviceJson
){
this
.
id
=
serviceJson
[
"tenantID"
];
this
.
name
=
serviceJson
[
"tenantName"
];
this
.
isPermitted
=
serviceJson
[
"is-permitted"
];
}
}