ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface SerializedResponse

    Represents a serialized response from a supplier with content type and optional content. This type is used to standardize the format of responses across different supplier implementations.

    interface SerializedResponse {
        contentType: string;
        content?: string;
    }
    Index

    Properties

    contentType: string

    The MIME type of the content (e.g., 'application/json', 'text/html')

    content?: string

    The serialized content of the response. Optional as some responses may not have content.