/// <summary>
 /// Update the position of a product (product_ids). Use PATCH to update the properties of a product
 /// </summary>
 /// <param name="product"></param>
 public void Put(Product product)
 {
     throw new NotImplementedException();
 }
 /// <summary>
 /// Update a product (product_ids) in this store (store_id). Supports partial updates, where values not specified in the request body are not overwritten.
 /// </summary>
 /// <param name="productId"></param>
 /// <param name="product"></param>
 /// <returns></returns>
 public Product Patch(string productId, Product product)
 {
     throw new NotImplementedException();
 }