@lasuillard/raindrop-client
    Preparing search index...

    Interface ConfigurationParameters

    Raindrop API (Unofficial) UNOFFICIAL OpenAPI specification of Raindrop API. This OpenAPI spec has been made by hand with reference to official documentation because it is not provided by Raindrop.io. Because official documentation not maintained well, there are very (highly) likely to have mismatch in schemas. As we can't inspect and address all issues, schema being updated as we find issues. Any contributions are welcome. Bug report, schema update, adding descriptions or functions, please don't hesitate to create an issue.

    The version of the OpenAPI document: 0.1.0

    NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). https://openapi-generator.tech Do not edit the class manually.

    interface ConfigurationParameters {
        accessToken?:
            | string
            | Promise<string>
            | ((name?: string, scopes?: string[]) => string)
            | ((name?: string, scopes?: string[]) => Promise<string>);
        apiKey?:
            | string
            | Promise<string>
            | ((name: string) => string)
            | ((name: string) => Promise<string>);
        baseOptions?: any;
        basePath?: string;
        formDataCtor?: new () => any;
        password?: string;
        serverIndex?: number;
        username?: string;
    }
    Index

    Properties

    accessToken?:
        | string
        | Promise<string>
        | ((name?: string, scopes?: string[]) => string)
        | ((name?: string, scopes?: string[]) => Promise<string>)
    apiKey?:
        | string
        | Promise<string>
        | ((name: string) => string)
        | ((name: string) => Promise<string>)
    baseOptions?: any
    basePath?: string
    formDataCtor?: new () => any
    password?: string
    serverIndex?: number
    username?: string