diff --git a/src/main/java/com/meplato/mall/catalogs/Catalog.java b/src/main/java/com/meplato/mall/catalogs/Catalog.java index 24366da..2e764f1 100644 --- a/src/main/java/com/meplato/mall/catalogs/Catalog.java +++ b/src/main/java/com/meplato/mall/catalogs/Catalog.java @@ -57,6 +57,8 @@ public class Catalog { private String selfLink; @SerializedName("skipWorkArea") private boolean skipWorkArea; + @SerializedName("storePin") + private String storePin; @SerializedName("supportsOciBackgroundsearch") private boolean supportsOciBackgroundsearch; @SerializedName("supportsOciDetail") @@ -320,6 +322,20 @@ public void setSkipWorkArea(boolean skipWorkArea) { this.skipWorkArea = skipWorkArea; } + /** + * StorePin is the unique PIN of the catalog. + */ + public String getStorePin() { + return this.storePin; + } + + /** + * StorePin is the unique PIN of the catalog. + */ + public void setStorePin(String storePin) { + this.storePin = storePin; + } + /** * SupportsOciBackgroundsearch indicates whether a catalog supports the OCI * BACKGROUNDSEARCH transaction. diff --git a/src/main/java/com/meplato/mall/catalogs/Service.java b/src/main/java/com/meplato/mall/catalogs/Service.java index aa2ada8..f3f84b7 100644 --- a/src/main/java/com/meplato/mall/catalogs/Service.java +++ b/src/main/java/com/meplato/mall/catalogs/Service.java @@ -17,7 +17,7 @@ * * @copyright 2014-2016 Meplato GmbH, Switzerland. * @author Meplato API Team - * @version 1.0.4 + * @version 1.0.5 * @license Copyright (c) 2015 Meplato GmbH, Switzerland. All rights reserved. * @see Terms of Service * @see External documentation @@ -41,7 +41,7 @@ public class Service { /** API title. */ public static String TITLE = "Meplato Mall API"; /** API version. */ - public static String VERSION = "1.0.4"; + public static String VERSION = "1.0.5"; /** User Agent. */ public static String USER_AGENT = "meplato-java-client/2.0"; /** Default base URL of the API endpoints. */ diff --git a/src/main/java/com/meplato/mall/mlt/Service.java b/src/main/java/com/meplato/mall/mlt/Service.java index 4d80b15..98a8ee2 100644 --- a/src/main/java/com/meplato/mall/mlt/Service.java +++ b/src/main/java/com/meplato/mall/mlt/Service.java @@ -17,7 +17,7 @@ * * @copyright 2014-2016 Meplato GmbH, Switzerland. * @author Meplato API Team - * @version 1.0.4 + * @version 1.0.5 * @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved. * @see Terms of Service * @see External documentation @@ -41,7 +41,7 @@ public class Service { /** API title. */ public static String TITLE = "Meplato Mall API"; /** API version. */ - public static String VERSION = "1.0.4"; + public static String VERSION = "1.0.5"; /** User Agent. */ public static String USER_AGENT = "meplato-java-client/2.0"; /** Default base URL of the API endpoints. */ diff --git a/src/main/java/com/meplato/mall/products/Service.java b/src/main/java/com/meplato/mall/products/Service.java index f82eb06..0768964 100644 --- a/src/main/java/com/meplato/mall/products/Service.java +++ b/src/main/java/com/meplato/mall/products/Service.java @@ -17,7 +17,7 @@ * * @copyright 2014-2016 Meplato GmbH, Switzerland. * @author Meplato API Team - * @version 1.0.4 + * @version 1.0.5 * @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved. * @see Terms of Service * @see External documentation @@ -41,7 +41,7 @@ public class Service { /** API title. */ public static String TITLE = "Meplato Mall API"; /** API version. */ - public static String VERSION = "1.0.4"; + public static String VERSION = "1.0.5"; /** User Agent. */ public static String USER_AGENT = "meplato-java-client/2.0"; /** Default base URL of the API endpoints. */ diff --git a/src/main/java/com/meplato/mall/vendors/Service.java b/src/main/java/com/meplato/mall/vendors/Service.java index 2c9760b..f91b95c 100644 --- a/src/main/java/com/meplato/mall/vendors/Service.java +++ b/src/main/java/com/meplato/mall/vendors/Service.java @@ -17,7 +17,7 @@ * * @copyright 2014-2016 Meplato GmbH, Switzerland. * @author Meplato API Team - * @version 1.0.4 + * @version 1.0.5 * @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved. * @see Terms of Service * @see External documentation @@ -41,7 +41,7 @@ public class Service { /** API title. */ public static String TITLE = "Meplato Mall API"; /** API version. */ - public static String VERSION = "1.0.4"; + public static String VERSION = "1.0.5"; /** User Agent. */ public static String USER_AGENT = "meplato-java-client/2.0"; /** Default base URL of the API endpoints. */