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

    Interface TransectObservationList

    An observation list within a transect, representing a single species group that was counted.

    interface TransectObservationList {
        id: number;
        species_group: number;
        all_species_counted: number;
        all_individuals_counted: number;
        notes?: string;
        project: number | null;
    }
    Index

    Properties

    id: number

    Read-only. The observation list id.

    species_group: number

    The species group id.

    all_species_counted: number

    Whether all species were counted. 0: unknown, 1: no, 2: yes.

    all_individuals_counted: number

    Whether all individuals were counted. 0: unknown, 1: no, 2: yes.

    notes?: string

    Optional, user notes for this list.

    project: number | null

    Optional, the project id to use, where null means no project. The user needs permission to add a visit to this project.