An issue with a listings item.

Export

Issue

interface Issue {
    attributeNames?: string[];
    categories: string[];
    code: string;
    enforcements?: IssueEnforcements;
    message: string;
    severity: IssueSeverityEnum;
}

Properties

attributeNames?: string[]

The names of the attributes associated with the issue, if applicable.

Memberof

Issue

categories: string[]

List of issue categories. Possible vales: * INVALID_ATTRIBUTE - Indicating an invalid attribute in the listing. * MISSING_ATTRIBUTE - Highlighting a missing attribute in the listing. * INVALID_IMAGE - Signifying an invalid image in the listing. * MISSING_IMAGE - Noting the absence of an image in the listing. * INVALID_PRICE - Pertaining to issues with the listing's price-related attributes. * MISSING_PRICE - Pointing out the absence of a price attribute in the listing. * DUPLICATE - Identifying listings with potential duplicate problems, such as this ASIN potentially being a duplicate of another ASIN. * QUALIFICATION_REQUIRED - Indicating that the listing requires qualification-related approval.

Memberof

Issue

code: string

An issue code that identifies the type of issue.

Memberof

Issue

enforcements?: IssueEnforcements

Memberof

Issue

message: string

A message that describes the issue.

Memberof

Issue

The severity of the issue.

Memberof

Issue