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

    A structure resolved from a search query, ready to hand to a renderer.

    export interface ResolvedMolecule {
    /** The PubChem CID the query resolved to. */
    cid: PubChemCID;
    /** The parsed atoms and bonds. */
    molecule: Molecule;
    /** Whether PubChem served a real 3D conformer or fell back to the flat 2D layout. */
    recordType: StructureRecordType;
    }
    interface ResolvedMolecule {
        cid: PubChemCID;
        molecule: Molecule;
        recordType: StructureRecordType;
    }
    Index

    Properties

    The PubChem CID the query resolved to.

    molecule: Molecule

    The parsed atoms and bonds.

    Whether PubChem served a real 3D conformer or fell back to the flat 2D layout.