The payload for the getFeatureSKU operation.

Export

GetFeatureSkuResult

interface GetFeatureSkuResult {
    featureName: string;
    ineligibleReasons?: string[];
    isEligible: boolean;
    marketplaceId: string;
    skuInfo?: FeatureSku;
}

Properties

featureName: string

The name of the feature.

Memberof

GetFeatureSkuResult

ineligibleReasons?: string[]

A list of one or more reasons that the seller SKU is ineligibile for the feature. Possible values: * MERCHANT_NOT_ENROLLED - The merchant isn't enrolled for the feature. * SKU_NOT_ELIGIBLE - The SKU doesn't reside in a warehouse that supports the feature. * INVALID_SKU - There is an issue with the SKU provided.

Memberof

GetFeatureSkuResult

isEligible: boolean

When true, the seller SKU is eligible for the requested feature.

Memberof

GetFeatureSkuResult

marketplaceId: string

The requested marketplace.

Memberof

GetFeatureSkuResult

skuInfo?: FeatureSku

Memberof

GetFeatureSkuResult