blob: 55fc8379231b87990c715ebe4a4b7f55d74ff5b0 [file] [log] [blame]
export class Subscriber {
id: string;
name: string;
isPermitted: boolean;
constructor(subscriberResponse){
this.id = subscriberResponse['global-customer-id'];
this.name = subscriberResponse['subscriber-name'];
this.isPermitted = subscriberResponse['is-permitted'];
}
}