ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface PubChemDescription

    A compound's textual description from PUG-REST's /description operation.

    export interface PubChemDescription {
    /** The compound title, if provided. */
    title?: string;
    /** The description text. */
    description?: string;
    /** Human-readable name of the description's source. */
    source?: string;
    /** URL of the description's source. */
    url?: string;
    }
    interface PubChemDescription {
        title?: string;
        description?: string;
        source?: string;
        url?: string;
    }
    Index

    Properties

    title?: string

    The compound title, if provided.

    description?: string

    The description text.

    source?: string

    Human-readable name of the description's source.

    url?: string

    URL of the description's source.