Documentation
    Preparing search index...
    interface RestApiRecipe {
        defaultBaseUrl?: string;
        name: string;
        querySerializer: QuerySerializer;
        getOptions(
            apiKey?: string,
            overrides?: Partial<RestAdapterOptions>,
        ): RestAdapterOptions;
    }

    Implemented by

    Index

    Properties

    defaultBaseUrl?: string

    The default base URL for the API (if applicable)

    name: string

    Name of the recipe

    querySerializer: QuerySerializer

    The query serializer that translates Quatrain Filters to the API's expected query strings

    Methods