Interface UserSector<S>

interface UserSector<S = string | ISector> {
    created_at: string;
    custom_distributed: number;
    distributed_services: number;
    id: string;
    is_attendant: boolean;
    last_service: string;
    last_service_at: string;
    multiple_factor: number;
    opened_services: number;
    priority: number;
    sector: S;
    sector_id: string;
    updated_at: string;
    user: string | IUser;
    user_id: string;
    workspace: string;
    workspace_id: string;
    workspace_user: string;
}

Type Parameters

Properties

created_at: string
custom_distributed: number
distributed_services: number
id: string
is_attendant: boolean
last_service: string
last_service_at: string
multiple_factor: number
opened_services: number
priority: number
sector: S
sector_id: string
updated_at: string
user: string | IUser
user_id: string
workspace: string
workspace_id: string
workspace_user: string