-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jordan Hall
committed
Sep 8, 2017
1 parent
287f80c
commit f82b15a
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace RapidWeb\AmazonMwsEnums; | ||
|
||
abstract class FeedType | ||
{ | ||
const PRODUCT = '_POST_PRODUCT_DATA_'; | ||
const INVENTORY = '_POST_INVENTORY_AVAILABILITY_DATA_'; | ||
const PRICING = '_POST_PRODUCT_PRICING_DATA_'; | ||
const IMAGES = '_POST_PRODUCT_IMAGE_DATA_'; | ||
const RELATIONSHIPS = '_POST_PRODUCT_RELATIONSHIP_DATA_'; | ||
const OVERRIDES = '_POST_PRODUCT_OVERRIDES_DATA_'; | ||
} |