export declare enum SKUError { /** * The request tried to create an SKU, but the 'type' field of the associated product was set to 'service'. The request was rejected. Corrective action: Set 'product' to the ID of a product that has its 'type' field set to 'goods'. */ ERROR_CREATE_SKU_WRONG_PRODUCT_TYPE = "ERROR_CREATE_SKU_WRONG_PRODUCT_TYPE", /** * The request tried to delete an SKU, but the SKU was not found. The request was rejected. Corrective action: Determine whether the SKU was already deleted, and why there were multiple requests to delete it. */ ERROR_DELETE_SKU = "ERROR_DELETE_SKU", /** * The request tried to retrieve an SKU, but the SKU was not found. The request was rejected. Corrective action: Use a valid SKU ID. */ ERROR_GET_SKU = "ERROR_GET_SKU", /** * The request attempted an operation that requires an SKU, but the SKU was not found. The request was rejected. Corrective action: Use a valid SKU ID. */ ERROR_INVALID_SKU_ID = "ERROR_INVALID_SKU_ID", /** * The request tried to create or update an SKU, but the quantity specified for the inventory was not a number. The request was rejected. Corrective action: Specify a positive number. */ INVALID_INVENTORY_QUANTITY = "INVALID_INVENTORY_QUANTITY", /** * The request tried to create or update an SKU, but the attributes did not match the list of attributes defined in the associated product. The request was rejected. Corrective action: Define attributes that match the list of attributes defined in the associated product. */ INVALID_SKU_ATTRIBUTES = "INVALID_SKU_ATTRIBUTES", /** * The request tried to create or update an SKU, but the 'type' field in the 'inventory' object was not recognized. The request was rejected. Corrective action: Use 'finite', 'infinite' or 'bucket'. */ INVALID_SKU_INVENTORY_TYPE = "INVALID_SKU_INVENTORY_TYPE", /** * The request tried to create or update an SKU, but the 'price' was not recognized. The request was rejected. Corrective action: Use a valid decimal for the price. */ INVALID_SKU_PRICE = "INVALID_SKU_PRICE", /** * The request tried to create or update an SKU, but the product was not recognized. The request was rejected. Corrective action: For 'product', use the ID of a valid product of type 'goods'. */ INVALID_SKU_PRODUCT_TOKEN = "INVALID_SKU_PRODUCT_TOKEN" } //# sourceMappingURL=SKUError.d.ts.map