Interface Activity

Used to document usage of the service. Every activity can be tracked using this interface

interface Activity {
    activityName?: string;
    caseId?: string;
    customerId?: string;
    description?: string;
    id?: string;
    paid?: boolean;
    projectId?: string;
    subscriptionId?: string;
    timestamp?: Date;
    userId?: string;
}

Properties

activityName?: string

An identifier of this type of activity

caseId?: string
customerId?: string
description?: string
id?: string
paid?: boolean
projectId?: string
subscriptionId?: string
timestamp?: Date
userId?: string

Generated using TypeDoc