Skip to content

Commit

Permalink
Added FeedType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Hall committed Sep 8, 2017
1 parent 287f80c commit f82b15a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/FeedType.php
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_';
}

0 comments on commit f82b15a

Please sign in to comment.