Interface GetDSRActivitiesInput

interface GetDSRActivitiesInput {
    activityTypes?: string[];
    createdAfter?: Date;
    createdBefore?: Date;
    limit?: number;
    offset?: number;
    roomSlug: string;
    taskSlug?: string;
    userId?: string;
    userType?: "External" | "Internal";
    username?: string;
}

Properties

activityTypes?: string[]
createdAfter?: Date
createdBefore?: Date
limit?: number
offset?: number
roomSlug: string
taskSlug?: string
userId?: string
userType?: "External" | "Internal"
username?: string