Rev 95 | Rev 115 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
namespace java in.shop2020.model.v1.catalognamespace py shop2020.thriftpy.model.v1.catalog/**Objects*/enum status{PHASED_OUT,DELETED,PAUSED,ACTIVE,}struct Category{1:i64 id,2:string name,3:list<i64> childCategories,4:i64 parent_id,5:bool isTopLevel,6:i64 addedOn,7:status categoryStatus}struct Vendor{1:i64 id,2:string name3:status vendorStatus4:i64 addedOn}struct Warehouse{1:i64 id,2:string location,3:i64 vendor_id4:status warehouseStatus5:i64 addedOn}struct ItemInventory{1:i64 id,2:map<i64,i64> availability,3:i64 lastCheckedOn}struct ItemInventoryHistory{1:i64 item_id,2:i64 warehouse_id,3:i64 timestamp,4:i64 availability}struct Item{1:i64 id,2:list<i64> categories,3:ItemInventory itemInventory,4:i64 addedOn,5:i64 startDate,6:status itemStatus,7:map<string,string> otherInfo,8:double price}exception CatalogServiceException{1:i64 id,2:string message}service CatalogService{/**Content methods*//**Availability and inventory attributes*///all add and update methods - added by Ashishi64 addCategory(1:Category category) throws (1:CatalogServiceException cex),i64 addItem(1:Item item) throws (1:CatalogServiceException cex),i64 addItemToCategory(1:i64 item_id, 2:i64 category_id) throws (1:CatalogServiceException cex),i64 addWarehouse(1:Warehouse warehouse) throws (1:CatalogServiceException cex),i64 addVendor(1:Vendor vendor) throws (1:CatalogServiceException cex),void updateInventory(1:i64 item_id, 2:i64 warehouse_id, 3: i64 quantity, 4:i64 timestamp) throws (1:CatalogServiceException cex),//all delete methodsvoid retireCategory(1:i64 category_id) throws (1:CatalogServiceException cex),void retireVendor(1:i64 vendor_id) throws (1:CatalogServiceException cex),void retireWarehouse(1:i64 warehouse_id) throws (1:CatalogServiceException cex),//Item management apisvoid startItemOn(1:i64 item_id, 2:i64 timestamp) throws (1:CatalogServiceException cex),void retireItemOn(1:i64 item_id, 2:i64 timestamp) throws (1:CatalogServiceException cex),void changeItemStatus(1:i64 item_id, 2:i64 timestamp, 3:status newstatus) throws (1:CatalogServiceException cex),//Other accessor methods - added by AshishCategory getCategory(1:i64 id) throws (1:CatalogServiceException cex),list<Category> getAllCategories(1:bool isActive) throws (1:CatalogServiceException cex),Item getItem(1:i64 item_id) throws (1:CatalogServiceException cex),list<Item> getAllItemsForCategory(1:i64 category_id,2:bool isActive) throws (1:CatalogServiceException cex),list<Item> getAllItems(1:bool isActive) throws (1:CatalogServiceException cex),list<Item> getAllItemsByStatus(1:status itemStatus) throws (1:CatalogServiceException cex),ItemInventory getItemInventory(1:i64 item_id) throws (1:CatalogServiceException cex),i64 getItemAvailibilityAtWarehouse(1:i64 warehouse_id, 2:i64 item_id) throws (1:CatalogServiceException cex),ItemInventoryHistory getItemInventoryHistory(1:i64 id, 2:i64 item_id, 3:i64 warehouse_id, 4: i64 from_date, 5:i64 to_date ) throws (1:CatalogServiceException cex),list<Warehouse> getAllWarehouses(1:bool isActive) throws (1:CatalogServiceException cex),Warehouse getWarehouse(1:i64 warehouse_id) throws (1:CatalogServiceException cex),list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:CatalogServiceException cex),list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:CatalogServiceException cex),Vendor getVendor(1:i64 vendor_id) throws (1:CatalogServiceException cex),list<Vendor> getAllVendors(1:bool isActive) throws (1:CatalogServiceException cex),//i64 getExpectedDeliveryTime(1:i64 item_id) throws (1:CatalogServiceException cex)}