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

    Interface AmbeedGet3DmoleculeBySmilesResponse

    Root of the 3D-molecule-by-SMILES response body returned by webapi/get_3dmol_by_smile.

    interface AmbeedGet3DmoleculeBySmilesResponse {
        time: string;
        lang: string;
        source: number;
        code: number;
        value: { mol: string; status: number; isok: boolean };
    }

    Hierarchy (View Summary)

    Index

    Properties

    time: string

    The timestamp of the response

    lang: string

    The language of the response

    source: number

    The source of the response

    code: number

    The response code

    value: { mol: string; status: number; isok: boolean }

    The response value containing the generated molecule data.

    Type declaration

    • mol: string

      MOL-format string describing the 3D molecule.

    • status: number

      Numeric status code for the generation.

    • isok: boolean

      Whether the molecule was generated successfully.