From d392bedae1778f568d64f1faeb265b253a0c4806 Mon Sep 17 00:00:00 2001 From: Nikhil Manapure Date: Mon, 15 Jul 2024 13:36:18 +0530 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c29bb76..a32b4b5 100644 --- a/README.md +++ b/README.md @@ -96,13 +96,13 @@ Settle.open( |----------------|-----------------|-------------------------------------------------------------------------| | `status` | `string` | The status of the transaction. Possible values are: `SUCCESS`, `FAILED`, `CANCELLED`. | | `order` | `object` | Details of the order. Can be an empty object for `FAILED`, `CANCELLED`. | -| `order.valueInPaise` | `number` | The total value of the order in paise. Optional field. | -| `order.uid` | `string` | The unique identifier for the order. Optional field. | +| `order.valueInPaise` | `number` | The total value of the order in paise. | +| `order.uid` | `string` | The unique identifier for the order. | | `customer` | `object` | Details of the customer. Can be an empty object for `FAILED`, `CANCELLED`. | -| `customer.mobile` | `string` | The mobile number of the customer. Optional field. | -| `customer.countryCode` | `string` | The country code of the customer's mobile number. Optional field. | +| `customer.mobile` | `string` | The mobile number of the customer. | +| `customer.countryCode` | `string` | The country code of the customer's mobile number. | | `customer.uid` | `string` | The unique identifier for the customer. Optional field. | -| `transactionId` | `string \ null` | The unique identifier for the transaction. Can be null. | +| `transactionId` | `string \ null` | The unique identifier for the transaction. Can be null for failed or cancelled transactions. |