DOIP Client Library - JavaScript Version
    Preparing search index...

    Interface Options

    Interface defining request options for DOIP client operations.

    interface Options {
        serviceInfo?: ServiceInfo;
        lookupServiceInfo?: boolean;
        authentication?: Json | AuthenticationInfo;
        anonymous?: boolean;
        attributes?: Json;
    }
    Index

    Properties

    serviceInfo?: ServiceInfo

    Information used to connect to a DOIP service to use for the operation.

    Note: Service information provided via the options parameter of a single call overrides any client default options.

    lookupServiceInfo?: boolean

    Controls whether to look up service information based on the target ID. If the serviceInfo property is absent and lookupServiceInfo is true, the client will look up service information rather than using any client default service information.

    authentication?: Json | AuthenticationInfo

    Authentication information to use for the operation.

    Note: Authentication provided via DoipRequest overrides that provided via the options parameter of a single call, which overrides any client default options.

    anonymous?: boolean

    Indicates whether to make the request anonymously.

    If the authentication property is absent and anonymous is true, the client will not use any default authentication information.

    attributes?: Json

    Additional attributes to include in the request.