observation-js Documentation - v1.14.0
    Preparing search index...

    Interface Session

    interface Session {
        id: number;
        uuid: string;
        name: string;
        type: string;
        notes: null | string;
        start_datetime: string;
        end_datetime: string;
        is_active: boolean;
        user: {
            id: number;
            email: string;
            first_name: string;
            last_name: string;
            is_staff: boolean;
            is_superuser: boolean;
            show_scientific_names: boolean;
            show_high_quality_only: boolean;
            language: string;
        };
    }
    Index

    Properties

    id: number
    uuid: string
    name: string
    type: string
    notes: null | string
    start_datetime: string
    end_datetime: string
    is_active: boolean
    user: {
        id: number;
        email: string;
        first_name: string;
        last_name: string;
        is_staff: boolean;
        is_superuser: boolean;
        show_scientific_names: boolean;
        show_high_quality_only: boolean;
        language: string;
    }