File

src/models/fasterq-analytics.ts

Extends

StoreModel

Constructor

constructor(data: any)

Properties

Static analyticId
analyticId: any
Static businessId
businessId: any
Static called
called: any
Static entered
entered: any
Static lineId
lineId: any
Static name
name: any
Static queueId
queueId: any
Static serviced
serviced: any
Static serviceId
serviceId: any
Static verification
verification: any
import {StoreModel} from "../models/StoreModel";
export class FasterqAnalyticsModel extends StoreModel {

    constructor(data) {
        super(data);
    }

    public get lineId() {
        return this.getKey('line_id');
    }

    public get serviceId() {
        return this.getKey('service_id');
    }

    public get queueId() {
        return this.getKey('queue_id');
    }

    public get name() {
        return this.getKey('name');
    }

    public get analyticId() {
        return this.getKey('analytic_id');
    }

    public get serviced() {
        return this.getKey('serviced');
    }

    public get entered() {
        return this.getKey('entered');
    }

    public get verification() {
        return this.getKey('verification');
    }

    public get called() {
        return this.getKey('called');
    }

    public get businessId() {
        return this.getKey('business_id');
    }
}
1491283369

results matching ""

    No results matching ""