Returned when the anonymous ID is being used by another resource.

The client application should choose another anonymous ID or retrieve an automatically generated one.
interface AnonymousIdAlreadyInUseError {
    code: "AnonymousIdAlreadyInUse";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "AnonymousIdAlreadyInUse"
message: string

"The given anonymous ID is already in use."

Generated using TypeDoc