Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
naveenrajbu authored Sep 13, 2021
1 parent 64dd208 commit f667a7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Bigcommerce::getProduct(1)->variants(123)->meta_fields(1)->delete();
~~~
**The 'Product' Object has following member functions**

**Member Function works only on 'v3'**
**Member Functions that works only on 'v3'**
All the 'v3' Resource Class has `create(), update() and delete()` functions
~~~php
$product = Bigcommerce::getProduct(1);
Expand Down Expand Up @@ -176,7 +176,7 @@ $option_value = $product->options("v3")->values(1);
$option_value->delete();
~~~

**Member Functions works on both 'v2' and 'v3'**
**Member Functions that works on both 'v2' and 'v3'**
Below are the function that works on both `v2` and `v3` versions
you can override the default version by setting it in functions like: `Bigcommerce::getProduct(1)->brand("v3");`

Expand Down Expand Up @@ -210,7 +210,7 @@ $reviews = $product->reviews();
// or Bigcommerce::getProductReviews($product_id);
~~~

**Member Functions works only on 'v2'**
**Member Functions that works only on 'v2'**
Some functions may return empty data since 'v2' has been abandoned by Bigcommerce
~~~php
$product = Bigcommerce::getProduct(1);
Expand Down

0 comments on commit f667a7f

Please sign in to comment.