inaturalistjs
    Preparing search index...

    Type Alias PostComment

    type PostComment = {
        comment?: {
            body?: string;
            parentId?: number;
            parentType?:
                | "Observation"
                | "ListedTaxon"
                | "AssessmentSection"
                | "ObservationField"
                | "Post"
                | "TaxonChange";
        };
    }
    Index

    Properties

    Properties

    comment?: {
        body?: string;
        parentId?: number;
        parentType?:
            | "Observation"
            | "ListedTaxon"
            | "AssessmentSection"
            | "ObservationField"
            | "Post"
            | "TaxonChange";
    }