Skip to content

Commit

Permalink
[python-sdk] updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav committed Mar 10, 2017
1 parent 9bb40fa commit 0f17f2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
- Fetch all payments

```py
client.payment.fetch_all()
client.payment.all()
```

- Fetch a particular payment
Expand Down Expand Up @@ -66,7 +66,7 @@ client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
- fetch all refunds

```py
client.refund.fetch_all()
client.refund.all()
```

### Orders
Expand All @@ -92,7 +92,7 @@ client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
- fetch all orders

```py
client.order.fetch_all()
client.order.all()
```

- fetch Payments of order
Expand Down Expand Up @@ -121,7 +121,7 @@ client = razorpay.Client(auth=("<YOUR_API_KEY>", "<YOUR_API_SECRET>"))
- fetch all invoices

```py
client.invoice.fetch_all()
client.invoice.all()
```

### Card
Expand Down

0 comments on commit 0f17f2c

Please sign in to comment.