@sumup/sdk
    Preparing search index...

    Type Alias RequestOptions

    SDK-specific options that can be passed to any generated request method.

    type RequestOptions = {
        authorization?: string;
        headers?: HeadersInit;
        host?: string;
        maxRetries?: number;
        signal?: AbortSignal | null;
        timeout?: number;
    }
    Index

    Properties

    authorization?: string

    Optional bearer authorization value to apply to the request, for example Bearer <access-token>. When provided, it overrides any default Authorization header configured on the client.

    headers?: HeadersInit
    host?: string
    maxRetries?: number
    signal?: AbortSignal | null
    timeout?: number