---
page_title: List Offer
product: OFFER ENGINE
page_source: https://juspay.io/in/docs/offer-engine/docs/ec-sdk-integration/list-offer
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/offer-engine/llms.txt
---


# List Offer



List Offer called for listing the ACTIVE offers at a particular point in time based on the configurations in the offers operations dashboard.

List Offers call filters through the complete set of Merchant offers configured in the dashboard and provides key details per offer such as:

* Offer description and terms
* Offer eligibility for the current transaction
* Offer benefits with calculation rules (Discount / Cashback / EMI Discount Value)
* Order amount pre/post discount
* Eligible payment instruments/methods for an offer
* Eligible Products along with offer breakup for each of the product

> **Note**
> **Optimistic Behaviour :** List Offers API has an Optimistic behaviour wherein if any param is not passed in the request, Offer engine will assume that this param will be received in the later part of the journey and hence response will be given without evaluating this param at that point. 
> 
> This is due to the fact that ListOffers can be called at any point in the consumer Journey like Home page, Product details page, Cart, Payment page etc. where certain information might not be available.




### Step 1.1. Request Parameters



## Parameters Payload
- **Order**:
  - Description: Order level details
  - Value:
    - **Order_id**:
      - Description: Unique ID generated by JusPay for the given order
      - Tags: string
    - **Amount**:
      - Description: Order Amount
      - Tags: string, Required
    - **Currency**:
      - Description: Currency passed during order creation
      - Tags: string, Required
    - **Payment_channel**:
      - Description: Payment channel used for making transaction. Possible values ANDROID, IOS, WEB and MWEB
      - Tags: string
    - **Udf1**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf2**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf3**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf4**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf5**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf6**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf7**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf8**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf9**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Udf10**:
      - Description: The user defined fields passed during order creation
      - Tags: string
    - **Basket**:
      - Description: List of Products/SKU details for Offer application
      - Value:
        - **Id**:
          - Description: Unique ID for the product where offer eligibility/applicability checks needs to be performed
          - Tags: String, Mandatory
        - **Quantity**:
          - Description: Number of items against a particular product
          - Tags: integer, Mandatory
        - **UnitPrice**:
          - Description: Price of the individual product
          - Tags: Double, Mandatory
      - Tags: Stringified Array of Objects
    - **Split_amount**:
      - Description: Amount of the split transaction. Should be passed only for split transaction flows
      - Tags: String
    - **Amount_info**:
      - Description: Contains Price breakup of the cart amount. Can be used when Offer shouldn’t be applied on components like tax, delivery fees etc.Note : Sum of the amounts in amount_info should be equal to the order amount
      - Value:
        - **Base_amount**:
          - Description: Base price value of the cart
          - Tags: String, Mandatory
        - **Add_on_amounts**:
          - Description: Any additional components of the cart. Eg : tax, delivery fees etc
          - Value:
            - **Name**:
              - Description: Name of the additional componentSupported Values : DELIVERYCHARGE, DELIVERYTIP, DONATION, SURCHARGE, TAX, OTHERCHARGES, PACKINGCHARGE
              - Tags: String, Mandatory
            - **Amount**:
              - Description: Amount of the corresponding additional component
              - Tags: String, Mandatory
          - Tags: Array of Objects
      - Tags: Stringified Object
  - Tags: object
- **PaymentMethodInfo**:
  - Description: Array of Payment Method Information
  - Value:
    - **Payment_method_reference**:
      - Description: Unique identifier that can be sent by the merchant for the respective Payment Instruments
      - Tags: string
    - **Payment_method_type**:
      - Description: Payment Method Type of the transaction. Possible values are "CARD" | "NB" | "UPI" | "WALLET" | "REWARD"
      - Tags: string
    - **Payment_method**:
      - Description: Payment Method of the transaction
      - Tags: string
    - **Card_number**:
      - Description: Valid Card Number
      - Tags: string
    - **Card_token**:
      - Description: A valid card token obtained using /card/list API
      - Tags: string
    - **Card_alias**:
      - Description: Unique identifier received from Payv3 (Only for Payv3 integrations).
      - Tags: string
    - **Card_type**:
      - Description: Card type of the valid card.(Only for Payv3 integrations).
      - Tags: string
    - **Bank_code**:
      - Description: Bank Code
      - Tags: string
    - **Card_bin**:
      - Description: Card bin of the valid card
      - Tags: string
    - **Card_sub_type**:
      - Description: Card subtype of the valid card
      - Tags: string
    - **Upi_vpa**:
      - Description: Valid VPA of the customer
      - Tags: string
    - **Upi_app**:
      - Description: UPI App package name
      - Tags: string
    - **Txn_type**:
      - Description: UPI transaction type. Possible values are UPI_PAY, UPI_COLLECT
      - Tags: string
    - **Is_emi**:
      - Description: To Fetch EMI Offer for that praticular intsrument
      - Value: True/False
      - Tags: String
  - Tags: object
- **Customer**:
  - Value:
    - **Id**:
      - Description: Customer id passed during order creation
      - Tags: string
    - **Email**:
      - Description: Email Id of the customer passed during order creation
      - Tags: string
    - **Phone**:
      - Description: Phone number of the customer passed during order creation
      - Tags: string
  - Tags: object
- **Offer_code**:
  - Description: Coupon code configured on Juspay Dashboard
  - Tags: string






### Step 1.1. Response Parameters



## Parameters Payload
- **BestOfferCombinations**:
  - Description: Contains details of the best offers against an order, mapped to eligible payment types sent in the request
  - Value:
    - **PaymentMethodReference**:
      - Description: Unique payment method reference ID sent in request body
      - Tags: String
    - **Offers**:
      - Description: Offer details for the best offer available against the above payment_method_reference
      - Value:
        - **Offer_id**:
          - Description: Unique offer ID of the eligible offer
          - Tags: String, Mandatory
        - **Cashback_amount**:
          - Description: Cashback amount benefit associated with the offer
          - Tags: String, Mandatory
        - **Discount_amount**:
          - Description: Discount amount benefit associated with the offer
          - Tags: String, Mandatory
        - **Merchant_discount_amount**:
          - Description: Offer amount that needs to be validated for a given order. Merchant discount benefit is used to validate offer and order amount in the backend and payment locking in the payment page
          - Tags: String, Mandatory
        - **Total_offered_amount**:
          - Description: Total offer benefit amount associated with the offer ID
          - Tags: String
      - Tags: Object
    - **OrderBreakup**:
      - Description: Order details breakup
      - Value:
        - **OrderAmount**:
          - Description: Order amount before offer is applied (for merchant discount benefit, this is the amount post application of offer)
          - Tags: String, Mandatory
        - **ApplicableOrderAmount**:
          - Description: Order amount applicable for calculation of offer
          - Tags: String, Mandatory
        - **FinalOrderAmount**:
          - Description: Final order amount after offer has been applied
          - Tags: String, Mandatory
        - **DiscountAmount**:
          - Description: Discount amount applied on order
          - Tags: String, Mandatory
        - **MerchantDiscountAmount**:
          - Description: Offer discount amount that should be validated in the back end
          - Tags: String, Mandatory
        - **CashbackAmount**:
          - Description: Cashback amount applied on order
          - Tags: String, Mandatory
        - **OfferAmount**:
          - Description: Total offer amount applicable on the order
          - Tags: String, Mandatory
        - **Benefits**:
          - Description: Breakdown of benefits on the order
          - Value:
            - **Type**:
              - Description: Benefits type, can be either CASHBACK | DISCOUNT | MERCHANT_DISCOUNT | EMI_DISCOUNT | EMI_CASHBACK
              - Tags: Enum
            - **Calculationrule**:
              - Description: Calculation rule for offer, can be either PERCENTAGE | ABSOLUTE
              - Tags: Enum
            - **Amountinfo**:
              - Description: List of strings that shows order amount elements on which offer has been applied
              - Tags: String
          - Tags: Object, Mandatory
      - Tags: String, Mandatory
  - Tags: Object
- **Offers**:
  - Description: Breakdown of active offers based on offers configured on the dashboard by merchant
  - Value:
    - **OfferId**:
      - Description: Unique ID associated with active offers
      - Tags: String, Mandatory
    - **Status**:
      - Description: Status of the offer, can be either ACTIVE or INACTIVE
      - Tags: String, Mandatory
    - **OfferCode**:
      - Description: Offer code configured by merchant on the offers dashboard
      - Tags: String, Mandatory
    - **OfferDescription**:
      - Description: Offer description details including title, description, tnc etc
      - Tags: Object, Mandatory
    - **UiConfigs**:
      - Description: UI configuration details of an offer
      - Tags: Object, Mandatory
    - **ApplicationMode**:
      - Description: Product application mode of an order, can be either PRODUCT | LINE_ITEM | ORDER
      - Tags: Enum, Mandatory
    - **OfferRules**:
      - Description: Order rules breakdown with amount and payment instrument detail
      - Value:
        - **Amount**:
          - Description: Offer benefit amount associated with an offer ID
          - Tags: json
        - **OrderBasket**:
          - Description: Order basket with product level details uploaded along with WHITELIST/BLACKLIST specification for those offers
          - Tags: json
        - **Platform**:
          - Description: Platforms on which offers are applicable
          - Tags: json
        - **Customer**:
          - Description: WHITELIST/BLACKLIST of customer IDs that were uploaded during offer configuration
          - Tags: json
        - **PaymentInstrument**:
          - Description: Eligible payment instruments for an offer
          - Tags: json
        - **Gateways**:
          - Description: WHITELIST/BLACKLIST of gateways that were uploaded during offer configuration
          - Tags: json
        - **Filters**:
          - Description: WHITELIST/BLACKLIST of filters that were uploaded during offer configuration
          - Tags: json
        - **TxnType**:
          - Description: Specifying the transaction type for an offer - can be ORDER (full swipe transactions) or EMI (EMI transactions)
          - Tags: json
      - Tags: Object, Mandatory
    - **OrderBreakup**:
      - Description: Order level breakdown with details
      - Tags: Object
    - **EligibleSavedPaymentMethods**:
      - Description: Eligible payment methods (for ELIGIBLE offers) based on the payment_method_reference sent as request
      - Tags: String, Mandatory
  - Tags: Object, Mandatory





## Sample Code Snippets:
### Sample List Offer:

#### Request Code Snippet:

```request
{
    "service": "in.juspay.ec",
    "requestId": "4b3aa6e5-7418-40e4-98e5-d43f7a0d2222",
    "payload": {
        "useV1": true,
        "paymentMethodInfo": [
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "3rij7q99sdcerj72g82ca59csb",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "DEBIT",
                "card_token": "tkn_ccd90531b72647b28945524860d757f1",
                "card_sub_type": "VISA CLASSIC",
                "card_number": null,
                "card_bin": "459156",
                "card_alias": "3rij7q99sdcerj72g82ca59csb",
                "bank_code": "JP_SBI",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "4lcmkpam9lv0inmd71g4ccstb5",
                "payment_method": "MASTERCARD",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "CREDIT",
                "card_token": "tkn_103bbc867df748fe973a4df76092adf5",
                "card_sub_type": "GOLD",
                "card_number": null,
                "card_bin": "528734",
                "card_alias": "4lcmkpam9lv0inmd71g4ccstb5",
                "bank_code": "JP_SBI",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "77e6cen0ttd27adci6q9org2pl",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "DEBIT",
                "card_token": "tkn_bc34f24155634668bab8f538dc60e7e7",
                "card_sub_type": "VISA CLASSIC",
                "card_number": null,
                "card_bin": "411111",
                "card_alias": "77e6cen0ttd27adci6q9org2pl",
                "bank_code": "JP_HDFC",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "78g5l1fp62obpivbqsved6dsgb",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "CREDIT",
                "card_token": "tkn_64fdfd33b28a487a814f2957feab52a7",
                "card_sub_type": "TEST_VARIANT",
                "card_number": null,
                "card_bin": "42424242",
                "card_alias": "78g5l1fp62obpivbqsved6dsgb",
                "bank_code": "DATANOTFOUND",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "31b4nm8ifr3io4rkfps16vjq26",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "CREDIT",
                "card_token": "tkn_bf487cb0255449a4a73014b7e99bfedd",
                "card_sub_type": "DATANOTFOUND",
                "card_number": null,
                "card_bin": "444433",
                "card_alias": "31b4nm8ifr3io4rkfps16vjq26",
                "bank_code": "DATANOTFOUND",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "4oa6mkq8p9sv72m23ujnunr41i",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "CREDIT",
                "card_token": "tkn_beda207775d3496f94072adfde633740",
                "card_sub_type": "CLASSIC",
                "card_number": null,
                "card_bin": "485464",
                "card_alias": "4oa6mkq8p9sv72m23ujnunr41i",
                "bank_code": "DATANOTFOUND",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "557qhgdmhqamgcpjautvgb8pvc",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "DEBIT",
                "card_token": "tkn_ff357e44c7664f8ba8dffa0f07b061e9",
                "card_sub_type": "DATANOTFOUND",
                "card_number": null,
                "card_bin": "534531",
                "card_alias": "557qhgdmhqamgcpjautvgb8pvc",
                "bank_code": "DATANOTFOUND",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": false,
                "payment_method_type": "CARD",
                "payment_method_reference": "6d7vgl9minucetmusb4tr8u4i5",
                "payment_method": "MASTERCARD",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": "DEBIT",
                "card_token": "tkn_169be83adc8c42ed8dfc53aad7a1b0a7",
                "card_sub_type": "DATANOTFOUND",
                "card_number": null,
                "card_bin": "541949",
                "card_alias": "6d7vgl9minucetmusb4tr8u4i5",
                "bank_code": "DATANOTFOUND",
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "FREECHARGE",
                "payment_method": "FREECHARGE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "MOBIKWIK",
                "payment_method": "MOBIKWIK",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYPAL",
                "payment_method": "PAYPAL",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PHONEPE",
                "payment_method": "PHONEPE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "AMEXEZECLICK",
                "payment_method": "AMEXEZECLICK",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "AIRTELMONEY",
                "payment_method": "AIRTELMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "BAJAJPAY",
                "payment_method": "BAJAJPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "JIOMONEY",
                "payment_method": "JIOMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OLAMONEY",
                "payment_method": "OLAMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OXIGEN",
                "payment_method": "OXIGEN",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYCASH",
                "payment_method": "PAYCASH",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYUMONEY",
                "payment_method": "PAYUMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYZAPP",
                "payment_method": "PAYZAPP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "DUMMY_LENDER",
                "payment_method": "DUMMY_LENDER",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "YPAYCASH",
                "payment_method": "YPAYCASH",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "YESPAY",
                "payment_method": "YESPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "LAZYPAY",
                "payment_method": "LAZYPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OLAPOSTPAID",
                "payment_method": "OLAPOSTPAID",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "SEZZLE",
                "payment_method": "SEZZLE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "SIMPL",
                "payment_method": "SIMPL",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "CAPITALFLOAT",
                "payment_method": "CAPITALFLOAT",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "CRED",
                "payment_method": "CRED",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "GOOGLEPAY",
                "payment_method": "GOOGLEPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "GOOGLEPAY",
                "payment_method": "GOOGLEPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "abc@ybl",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "abc@ybl",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "test@upi",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "test@upi",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "rakhfj@ybl",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "rakhfj@ybl",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "lightningshivam@ybl",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "lightningshivam@ybl",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "rakeshjupalli@ybl",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "rakeshjupalli@ybl",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "7339656860@axl",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "7339656860@axl",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "7799882064@ikwik",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "7799882064@ikwik",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": "avihsan8922@okhdfcbank",
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "avihsan8922@okhdfcbank",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "MASTERCARD",
                "payment_method": "MASTERCARD",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "VISA",
                "payment_method": "VISA",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "RUPAY",
                "payment_method": "RUPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "AMEX",
                "payment_method": "AMEX",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "DISCOVER",
                "payment_method": "DISCOVER",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "DINERS",
                "payment_method": "DINERS",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "MAESTRO",
                "payment_method": "MAESTRO",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "JCB",
                "payment_method": "JCB",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "SIMPL",
                "payment_method": "SIMPL",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PHONEPE",
                "payment_method": "PHONEPE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYPAL",
                "payment_method": "PAYPAL",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYZAPP",
                "payment_method": "PAYZAPP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "CRED",
                "payment_method": "CRED",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "SODEXO",
                "payment_method": "SODEXO",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "SEZZLE",
                "payment_method": "SEZZLE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "KOTAK_CLEMI",
                "payment_method": "KOTAK_CLEMI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "LAZYPAY",
                "payment_method": "LAZYPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "CAPITALFLOAT",
                "payment_method": "CAPITALFLOAT",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYTM",
                "payment_method": "PAYTM",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": "UPI_COLLECT",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "UPI",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "GOOGLEPAY",
                "payment_method": "GOOGLEPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OLAPOSTPAID",
                "payment_method": "OLAPOSTPAID",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "MONEY_VIEW_LSP",
                "payment_method": "MONEY_VIEW_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "FINANCEPEER_LSP",
                "payment_method": "FINANCEPEER_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "EARLY_SALARY_LSP",
                "payment_method": "EARLY_SALARY_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "IIFL_LSP",
                "payment_method": "IIFL_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "ABFL_LSP",
                "payment_method": "ABFL_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "KOTAK_LSP",
                "payment_method": "KOTAK_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "AXIS_LSP",
                "payment_method": "AXIS_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "LIQUILOANS_LSP",
                "payment_method": "LIQUILOANS_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "UNOFIN_LSP",
                "payment_method": "UNOFIN_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "DMI_LSP",
                "payment_method": "DMI_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "MOCK_LENDER_LSP",
                "payment_method": "MOCK_LENDER_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "PIRAMAL_LSP",
                "payment_method": "PIRAMAL_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "IDFC_LSP",
                "payment_method": "IDFC_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "CREDIT_FAIR_LSP",
                "payment_method": "CREDIT_FAIR_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "FINSALL_LSP",
                "payment_method": "FINSALL_LSP",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "IDFC_CLEMI",
                "payment_method": "IDFC_CLEMI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "DUMMY_LENDER",
                "payment_method": "DUMMY_LENDER",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYUMONEY",
                "payment_method": "PAYUMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OLAMONEY",
                "payment_method": "OLAMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CARD",
                "payment_method_reference": "BAJAJ",
                "payment_method": "BAJAJ",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "JIOMONEY",
                "payment_method": "JIOMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "AIRTELMONEY",
                "payment_method": "AIRTELMONEY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "EARLYSALARY",
                "payment_method": "EARLYSALARY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "MOBIKWIK",
                "payment_method": "MOBIKWIK",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "FREECHARGE",
                "payment_method": "FREECHARGE",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "CONSUMER_FINANCE",
                "payment_method_reference": "BHARATX",
                "payment_method": "BHARATX",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "OXIGEN",
                "payment_method": "OXIGEN",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "PAYCASH",
                "payment_method": "PAYCASH",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "AMEXEZECLICK",
                "payment_method": "AMEXEZECLICK",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "YPAYCASH",
                "payment_method": "YPAYCASH",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "YESPAY",
                "payment_method": "YESPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": "WALLET",
                "payment_method_reference": "BAJAJPAY",
                "payment_method": "BAJAJPAY",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": "UPI_QR",
                "tokenize_support": null,
                "payment_method_type": "UPI",
                "payment_method_reference": "UPI_QR",
                "payment_method": "UPI",
                "payment_channel": "WEB",
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            },
            {
                "upi_vpa": null,
                "upi_app": null,
                "txn_type": null,
                "tokenize_support": null,
                "payment_method_type": null,
                "payment_method_reference": "non-saved",
                "payment_method": null,
                "payment_channel": null,
                "mobile_number": null,
                "metadata": null,
                "mandate_type": null,
                "issuer": null,
                "is_mandate": null,
                "is_emi": null,
                "internal_source_flow": null,
                "express_checkout": null,
                "emi_type": null,
                "emi_tenure": null,
                "emi_bank": null,
                "card_type": null,
                "card_token": null,
                "card_sub_type": null,
                "card_number": null,
                "card_bin": null,
                "card_alias": null,
                "bank_code": null,
                "auth_type": null
            }
        ],
        "orderId": "HI-7xN273QyBF",
        "order": {
            "udf9": null,
            "udf8": null,
            "udf7": null,
            "udf6": null,
            "udf5": null,
            "udf4": null,
            "udf3": null,
            "udf2": null,
            "udf10": null,
            "udf1": null,
            "split_amount": null,
            "order_type": null,
            "order_id": "HI-7xN273QyBF",
            "metadata": null,
            "merchant_id": "picasso",
            "mandate": null,
            "gateway_reference_id": null,
            "currency": "INR",
            "basket": null,
            "amount_info": null,
            "amount": "60000"
        },
        "offerCode": null,
        "emi": null,
        "disableOffers": null,
        "customer": {
            "udf5": null,
            "udf4": null,
            "udf3": null,
            "udf2": null,
            "udf1": null,
            "phone": "9742144874",
            "metadata": null,
            "location": null,
            "id": "test_customer",
            "groups": null,
            "email": "test@gmail.com"
        },
        "clientAuthToken": "tkn_eb50b18147244dba85aa66cf9c7bdb68",
        "action": "listOffer"
    },
    "orderId": "HI-7xN273QyBF",
    "merchant_id": "Merchant",
    "environment": "sandbox",
    "customer_id": "test_customer"
}
```

### Sample List Offer:

#### Response:
```plaintext
{
    "service": "in.juspay.ec",
    "requestId": "cd8904da-4bbe-40be-943a-5faa288e28d6",
    "payload": {
        "action": "listOffer",
        "offers": [
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "0.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "60000.00",
                    "discountAmount": "0.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "MERCHANT_DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "10000.00",
                        "currency": "INR"
                    }
                },
                "offerId": "39767e59-5edd-4842-91de-79e6b60ecd39",
                "offerDescription": {
                    "tnc": "",
                    "title": "mc",
                    "sponsoredBy": "com.upi.axispay",
                    "description": "mc"
                },
                "offerCode": "mc",
                "eligibleSavedPaymentMethods": [
                    "MASTERCARD",
                    "VISA",
                    "RUPAY",
                    "AMEX",
                    "DISCOVER",
                    "DINERS",
                    "MAESTRO",
                    "JCB",
                    "SODEXO",
                    "BAJAJ",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "10.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "59990.00",
                    "discountAmount": "10.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [
                                "DEBIT"
                            ],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [
                                "VISA",
                                "MASTERCARD"
                            ],
                            "issuer": [],
                            "eligibleForTokenization": true,
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [
                                "NB_AXIS",
                                "NB_ICICI",
                                "NB_HDFC",
                                "NB_YESB",
                                "NB_KOTAK",
                                "NB_PNBCORP",
                                "NB_PNB",
                                "NB_CANR",
                                "NB_CUB",
                                "NB_KVB",
                                "NB_KARN"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "WALLET",
                            "paymentMethod": [
                                "AIRTELMONEY"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "REWARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [
                                "UPI_COLLECT",
                                "UPI_PAY"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CONSUMER_FINANCE",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "fd4f5aa4-2cbe-491c-b028-891881654255",
                "offerDescription": {
                    "tnc": "",
                    "title": "cf",
                    "sponsoredBy": "com.abipbl.upi",
                    "description": "Get 5%discount"
                },
                "offerCode": "cf",
                "eligibleSavedPaymentMethods": [
                    "AIRTELMONEY",
                    "abc@ybl",
                    "rakhfj@ybl",
                    "lightningshivam@ybl",
                    "rakeshjupalli@ybl",
                    "7339656860@axl",
                    "7799882064@ikwik",
                    "avihsan8922@okhdfcbank",
                    "test@upi",
                    "tez://upi/pay",
                    "phonepe://pay",
                    "paytmmp://pay",
                    "MASTERCARD",
                    "VISA",
                    "SEZZLE",
                    "KOTAK_CLEMI",
                    "CAPITALFLOAT",
                    "UPI",
                    "MONEY_VIEW_LSP",
                    "FINANCEPEER_LSP",
                    "EARLY_SALARY_LSP",
                    "IIFL_LSP",
                    "ABFL_LSP",
                    "KOTAK_LSP",
                    "AXIS_LSP",
                    "LIQUILOANS_LSP",
                    "UNOFIN_LSP",
                    "DMI_LSP",
                    "MOCK_LENDER_LSP",
                    "PIRAMAL_LSP",
                    "IDFC_LSP",
                    "CREDIT_FAIR_LSP",
                    "FINSALL_LSP",
                    "IDFC_CLEMI",
                    "DUMMY_LENDER",
                    "AIRTELMONEY",
                    "EARLYSALARY",
                    "BHARATX",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "true"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                "offerDescription": {
                    "tnc": "",
                    "title": "offerTitle-prefilled2",
                    "sponsoredBy": "com.angelbroking.angelwealth",
                    "description": ""
                },
                "offerCode": "Add_on_BB2",
                "eligibleSavedPaymentMethods": [
                    "FREECHARGE",
                    "MOBIKWIK",
                    "PAYPAL",
                    "PHONEPE",
                    "AMEXEZECLICK",
                    "AIRTELMONEY",
                    "BAJAJPAY",
                    "JIOMONEY",
                    "OLAMONEY",
                    "OXIGEN",
                    "PAYCASH",
                    "PAYUMONEY",
                    "PAYZAPP",
                    "DUMMY_LENDER",
                    "YPAYCASH",
                    "YESPAY",
                    "LAZYPAY",
                    "OLAPOSTPAID",
                    "SEZZLE",
                    "SIMPL",
                    "CAPITALFLOAT",
                    "CRED",
                    "GOOGLEPAY",
                    "GOOGLEPAY",
                    "abc@ybl",
                    "rakhfj@ybl",
                    "lightningshivam@ybl",
                    "rakeshjupalli@ybl",
                    "7339656860@axl",
                    "7799882064@ikwik",
                    "avihsan8922@okhdfcbank",
                    "test@upi",
                    "tez://upi/pay",
                    "phonepe://pay",
                    "paytmmp://pay",
                    "MASTERCARD",
                    "VISA",
                    "RUPAY",
                    "AMEX",
                    "DISCOVER",
                    "DINERS",
                    "MAESTRO",
                    "JCB",
                    "SIMPL",
                    "PHONEPE",
                    "PAYPAL",
                    "PAYZAPP",
                    "CRED",
                    "SODEXO",
                    "SEZZLE",
                    "KOTAK_CLEMI",
                    "LAZYPAY",
                    "CAPITALFLOAT",
                    "PAYTM",
                    "UPI",
                    "GOOGLEPAY",
                    "OLAPOSTPAID",
                    "MONEY_VIEW_LSP",
                    "FINANCEPEER_LSP",
                    "EARLY_SALARY_LSP",
                    "IIFL_LSP",
                    "ABFL_LSP",
                    "KOTAK_LSP",
                    "AXIS_LSP",
                    "LIQUILOANS_LSP",
                    "UNOFIN_LSP",
                    "DMI_LSP",
                    "MOCK_LENDER_LSP",
                    "PIRAMAL_LSP",
                    "IDFC_LSP",
                    "CREDIT_FAIR_LSP",
                    "FINSALL_LSP",
                    "IDFC_CLEMI",
                    "DUMMY_LENDER",
                    "PAYUMONEY",
                    "OLAMONEY",
                    "BAJAJ",
                    "JIOMONEY",
                    "AIRTELMONEY",
                    "EARLYSALARY",
                    "MOBIKWIK",
                    "FREECHARGE",
                    "BHARATX",
                    "OXIGEN",
                    "PAYCASH",
                    "AMEXEZECLICK",
                    "YPAYCASH",
                    "YESPAY",
                    "BAJAJPAY",
                    "UPI_QR",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "true"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "10.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "59990.00",
                    "discountAmount": "10.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [
                                "DEBIT"
                            ],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [
                                "VISA",
                                "MASTERCARD"
                            ],
                            "issuer": [],
                            "eligibleForTokenization": true,
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [
                                "NB_AXIS",
                                "NB_ICICI",
                                "NB_HDFC",
                                "NB_YESB",
                                "NB_KOTAK",
                                "NB_PNBCORP",
                                "NB_PNB",
                                "NB_CANR",
                                "NB_CUB",
                                "NB_KVB",
                                "NB_KARN"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "WALLET",
                            "paymentMethod": [
                                "AIRTELMONEY"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "REWARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [
                                "UPI_COLLECT",
                                "UPI_PAY"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "3809da65-31bb-4b13-8439-8460ced533bd",
                "offerDescription": {
                    "tnc": "",
                    "title": "Autoapply",
                    "sponsoredBy": "com.abipbl.upi",
                    "description": "Get 5%discount"
                },
                "offerCode": "Autoapply",
                "eligibleSavedPaymentMethods": [
                    "AIRTELMONEY",
                    "abc@ybl",
                    "rakhfj@ybl",
                    "lightningshivam@ybl",
                    "rakeshjupalli@ybl",
                    "7339656860@axl",
                    "7799882064@ikwik",
                    "avihsan8922@okhdfcbank",
                    "test@upi",
                    "tez://upi/pay",
                    "phonepe://pay",
                    "paytmmp://pay",
                    "MASTERCARD",
                    "VISA",
                    "UPI",
                    "AIRTELMONEY",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "59400.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "600.00",
                    "discountAmount": "59400.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "a38213fa-be57-4e9b-978c-2f39e6d7e83b",
                "offerDescription": {
                    "tnc": "SOMEOFFER",
                    "title": "SOMEOFFER",
                    "sponsoredBy": "com.abipbl.upi",
                    "description": "SOMEOFFER"
                },
                "offerCode": "SOMEOFFER",
                "eligibleSavedPaymentMethods": [
                    "FREECHARGE",
                    "MOBIKWIK",
                    "PAYPAL",
                    "PHONEPE",
                    "AMEXEZECLICK",
                    "AIRTELMONEY",
                    "BAJAJPAY",
                    "JIOMONEY",
                    "OLAMONEY",
                    "OXIGEN",
                    "PAYCASH",
                    "PAYUMONEY",
                    "PAYZAPP",
                    "DUMMY_LENDER",
                    "YPAYCASH",
                    "YESPAY",
                    "LAZYPAY",
                    "OLAPOSTPAID",
                    "SEZZLE",
                    "SIMPL",
                    "CAPITALFLOAT",
                    "CRED",
                    "GOOGLEPAY",
                    "GOOGLEPAY",
                    "abc@ybl",
                    "rakhfj@ybl",
                    "lightningshivam@ybl",
                    "rakeshjupalli@ybl",
                    "7339656860@axl",
                    "7799882064@ikwik",
                    "avihsan8922@okhdfcbank",
                    "test@upi",
                    "tez://upi/pay",
                    "phonepe://pay",
                    "paytmmp://pay",
                    "MASTERCARD",
                    "VISA",
                    "RUPAY",
                    "AMEX",
                    "DISCOVER",
                    "DINERS",
                    "MAESTRO",
                    "JCB",
                    "SIMPL",
                    "PHONEPE",
                    "PAYPAL",
                    "PAYZAPP",
                    "CRED",
                    "SODEXO",
                    "SEZZLE",
                    "KOTAK_CLEMI",
                    "LAZYPAY",
                    "CAPITALFLOAT",
                    "PAYTM",
                    "UPI",
                    "GOOGLEPAY",
                    "OLAPOSTPAID",
                    "MONEY_VIEW_LSP",
                    "FINANCEPEER_LSP",
                    "EARLY_SALARY_LSP",
                    "IIFL_LSP",
                    "ABFL_LSP",
                    "KOTAK_LSP",
                    "AXIS_LSP",
                    "LIQUILOANS_LSP",
                    "UNOFIN_LSP",
                    "DMI_LSP",
                    "MOCK_LENDER_LSP",
                    "PIRAMAL_LSP",
                    "IDFC_LSP",
                    "CREDIT_FAIR_LSP",
                    "FINSALL_LSP",
                    "IDFC_CLEMI",
                    "DUMMY_LENDER",
                    "PAYUMONEY",
                    "OLAMONEY",
                    "BAJAJ",
                    "JIOMONEY",
                    "AIRTELMONEY",
                    "EARLYSALARY",
                    "MOBIKWIK",
                    "FREECHARGE",
                    "BHARATX",
                    "OXIGEN",
                    "PAYCASH",
                    "AMEXEZECLICK",
                    "YPAYCASH",
                    "YESPAY",
                    "BAJAJPAY",
                    "UPI_QR",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "343.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "59657.00",
                    "discountAmount": "343.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [
                                "UPI_PAY"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": [
                                "com.dreamplug.androidapp",
                                "credpay://upi/pay"
                            ]
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "10000.00",
                        "currency": "INR"
                    }
                },
                "offerId": "96731b27-be0a-4c7f-a7df-f24f70018164",
                "offerDescription": {
                    "tnc": "",
                    "title": "CREDUPI",
                    "sponsoredBy": "com.upi.axispay",
                    "description": "CREDUPI"
                },
                "offerCode": "CREDUPI",
                "eligibleSavedPaymentMethods": [
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "INELIGIBLE",
                "reason": [
                    "[partner-eligibility] customer is ineligible"
                ],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "0.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "60000.00",
                    "discountAmount": "0.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "MERCHANT_DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [
                                "RUPAY",
                                "VISA"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [
                                "UPI_COLLECT",
                                "UPI_PAY"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [
                                "@axl"
                            ],
                            "app": [
                                "com.google.android.apps.nbu.paisa.user",
                                "tez://upi/pay"
                            ]
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "b5dea231-dea1-4e8d-a171-e69366291fd8",
                "offerDescription": {
                    "tnc": "",
                    "title": "CRED1",
                    "sponsoredBy": "com.msf.angelmobile",
                    "description": "CRED"
                },
                "offerCode": "CRED1",
                "eligibleSavedPaymentMethods": [],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "2312.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "57688.00",
                    "discountAmount": "2312.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [
                                "NB_HDFC",
                                "NB_AXIS",
                                "NB_AUB",
                                "NB_BOI",
                                "NB_BOM"
                            ],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "04a98285-5198-4cad-97eb-a1149e2403b3",
                "offerDescription": {
                    "tnc": "NBCOUPON",
                    "title": "NBCOUPON",
                    "sponsoredBy": "JP_HDFC",
                    "description": "NBCOUPON"
                },
                "offerCode": "NBCOUPON",
                "eligibleSavedPaymentMethods": [
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "58800.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "1200.00",
                    "discountAmount": "58800.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "eligibleForTokenization": true,
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "10000.00",
                        "currency": "INR"
                    }
                },
                "offerId": "f314cfa7-90fc-4188-b19e-23cd7cf5b7a4",
                "offerDescription": {
                    "tnc": "**Eligibility:** This offer is valid for customers using eligible payment methods only.**Duration:** Offer valid from [Start Date] to [End Date].**Usage Limit:** The offer is applicable only once per user during the promotion period.**Minimum Transaction:** A minimum transaction amount of ₹[Amount] is required to avail the offer.**Discount Details:** Users will receive a flat discount of ₹[Amount] or [Percentage]% on eligible transactions.**Exclusions:** This offer is not applicable to canceled or refunded transactions.**Non-Transferable:** The offer is non-transferable and cannot be exchanged for cash.**Merchant Rights:** The merchant reserves the right to modify or withdraw the offer at any time.**Fraud Prevention:** Transactions suspected of fraudulent activity will not be eligible.**Final Decision:** All decisions regarding the offer are at the sole discretion of the merchant and binding.\n\n**Eligibility:** This offer is valid for customers using eligible payment methods only.**Duration:** Offer valid from [Start Date] to [End Date].**Usage Limit:** The offer is applicable only once per user during the promotion period.**Minimum Transaction:** A minimum transaction amount of ₹[Amount] is required to avail the offer.**Discount Details:** Users will receive a flat discount of ₹[Amount] or [Percentage]% on eligible transactions.**Exclusions:** This offer is not applicable to canceled or refunded transactions.**Non-Transferable:** The offer is non-transferable and cannot be exchanged for cash.**Merchant Rights:** The merchant reserves the right to modify or withdraw the offer at any time.**Fraud Prevention:** Transactions suspected of fraudulent activity will not be eligible.**Final Decision:** All decisions regarding the offer are at the sole discretion of the merchant and binding.\n**Eligibility:** This offer is valid for customers using eligible payment methods only.**Duration:** Offer valid from [Start Date] to [End Date].**Usage Limit:** The offer is applicable only once per user during the promotion period.**Minimum Transaction:** A minimum transaction amount of ₹[Amount] is required to avail the offer.**Discount Details:** Users will receive a flat discount of ₹[Amount] or [Percentage]% on eligible transactions.**Exclusions:** This offer is not applicable to canceled or refunded transactions.**Non-Transferable:** The offer is non-transferable and cannot be exchanged for cash.**Merchant Rights:** The merchant reserves the right to modify or withdraw the offer at any time.**Fraud Prevention:** Transactions suspected of fraudulent activity will not be eligible.**Final Decision:** All decisions regarding the offer are at the sole discretion of the merchant and binding.",
                    "title": "Token_coupon",
                    "sponsoredBy": "com.upi.axispay",
                    "description": "Token_coupon"
                },
                "offerCode": "Token_coupon",
                "eligibleSavedPaymentMethods": [
                    "abc@ybl",
                    "rakhfj@ybl",
                    "lightningshivam@ybl",
                    "rakeshjupalli@ybl",
                    "7339656860@axl",
                    "7799882064@ikwik",
                    "avihsan8922@okhdfcbank",
                    "test@upi",
                    "tez://upi/pay",
                    "phonepe://pay",
                    "paytmmp://pay",
                    "MASTERCARD",
                    "VISA",
                    "RUPAY",
                    "AMEX",
                    "DISCOVER",
                    "DINERS",
                    "MAESTRO",
                    "JCB",
                    "SODEXO",
                    "UPI",
                    "BAJAJ",
                    "UPI_QR",
                    "non-saved"
                ],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "INELIGIBLE",
                "reason": [
                    "[partner-eligibility] customer is ineligible"
                ],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "0.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "60000.00",
                    "discountAmount": "0.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "CASHBACK"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "NB",
                            "paymentMethod": [
                                "NB_AXIS",
                                "NB_ICICI",
                                "NB_SBI"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [
                                "MASTERCARD"
                            ],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [
                                "UPI_COLLECT"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [
                                "@axl",
                                "@ybl"
                            ],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1.00",
                        "currency": "INR"
                    }
                },
                "offerId": "71cd44bf-84bc-49f0-8447-716c11e23744",
                "offerDescription": {
                    "tnc": "",
                    "title": "CRED_Coupon_test",
                    "sponsoredBy": "CRED",
                    "description": ""
                },
                "offerCode": "CRED_Coupon_test",
                "eligibleSavedPaymentMethods": [],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "false"
                },
                "status": "INELIGIBLE",
                "reason": [
                    "[order.amount] Value 60000.00 was not less than or equal to 1234.00"
                ],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "55.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "60000.00",
                    "discountAmount": "0.00",
                    "cashbackAmount": "55.00",
                    "benefits": [
                        {
                            "type": "CASHBACK"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [
                                "UPI_COLLECT",
                                "UPI_PAY"
                            ],
                            "paymentMethodType": "UPI",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        },
                        {
                            "variant": [],
                            "type": [],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "1234.00",
                        "maxOrderAmount": "1234.00",
                        "currency": "INR"
                    }
                },
                "offerId": "4c21fe20-8d94-46fd-9b23-a4630ebe9db2",
                "offerDescription": {
                    "tnc": "",
                    "title": "cred_coupon",
                    "sponsoredBy": "com.upi.axispay",
                    "description": "cred_coupon"
                },
                "offerCode": "cred_coupon",
                "eligibleSavedPaymentMethods": [],
                "actions": []
            },
            {
                "uiConfigs": {
                    "shouldValidate": "true",
                    "paymentMethodLabel": "",
                    "isHidden": "false",
                    "autoApply": "true"
                },
                "status": "ELIGIBLE",
                "reason": [],
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offerRules": {
                    "txnType": [
                        "ORDER"
                    ],
                    "paymentInstrument": [
                        {
                            "variant": [],
                            "type": [
                                "DEBIT"
                            ],
                            "paymentMethodType": "CARD",
                            "paymentMethod": [],
                            "issuer": [],
                            "app": []
                        }
                    ],
                    "amount": {
                        "minOrderAmount": "5000.00",
                        "currency": "INR"
                    }
                },
                "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                "offerDescription": {
                    "tnc": "Debitcard50%",
                    "title": "Debitcard50%",
                    "sponsoredBy": "com.upi.axispay",
                    "description": "Debitcard50%"
                },
                "offerCode": "Debitcard50%",
                "eligibleSavedPaymentMethods": [
                    "MASTERCARD",
                    "VISA",
                    "RUPAY",
                    "AMEX",
                    "DISCOVER",
                    "DINERS",
                    "MAESTRO",
                    "JCB",
                    "SODEXO",
                    "BAJAJ",
                    "non-saved"
                ],
                "actions": []
            }
        ],
        "bestOfferCombinations": [
            {
                "paymentMethodReference": "FREECHARGE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MOBIKWIK",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYPAL",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PHONEPE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AMEXEZECLICK",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AIRTELMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "BAJAJPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "JIOMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OLAMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OXIGEN",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYCASH",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYUMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYZAPP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "DUMMY_LENDER",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "YPAYCASH",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "YESPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "LAZYPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OLAPOSTPAID",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "SEZZLE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "SIMPL",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "CAPITALFLOAT",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "CRED",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "GOOGLEPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "GOOGLEPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "abc@ybl",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "rakhfj@ybl",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "lightningshivam@ybl",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "rakeshjupalli@ybl",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "7339656860@axl",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "7799882064@ikwik",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "avihsan8922@okhdfcbank",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "test@upi",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "tez://upi/pay",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "phonepe://pay",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "paytmmp://pay",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MASTERCARD",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "VISA",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "RUPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AMEX",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "DISCOVER",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "DINERS",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MAESTRO",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "JCB",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "SIMPL",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PHONEPE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYPAL",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYZAPP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "CRED",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "SODEXO",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "SEZZLE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "KOTAK_CLEMI",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "LAZYPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "CAPITALFLOAT",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYTM",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "UPI",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "GOOGLEPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OLAPOSTPAID",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MONEY_VIEW_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "FINANCEPEER_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "EARLY_SALARY_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "IIFL_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "ABFL_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "KOTAK_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AXIS_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "LIQUILOANS_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "UNOFIN_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "DMI_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MOCK_LENDER_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PIRAMAL_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "IDFC_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "CREDIT_FAIR_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "FINSALL_LSP",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "IDFC_CLEMI",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "DUMMY_LENDER",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYUMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OLAMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "BAJAJ",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "JIOMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AIRTELMONEY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "EARLYSALARY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "MOBIKWIK",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "FREECHARGE",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "BHARATX",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "OXIGEN",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "PAYCASH",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "AMEXEZECLICK",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "YPAYCASH",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "YESPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "BAJAJPAY",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "UPI_QR",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "73c517c8-7da0-4bd6-b874-564a6a73f6f2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            },
            {
                "paymentMethodReference": "non-saved",
                "orderBreakup": {
                    "orderAmount": "60000.00",
                    "offerAmount": "30000.00",
                    "merchantDiscountAmount": "0.00",
                    "finalOrderAmount": "30000.00",
                    "discountAmount": "30000.00",
                    "cashbackAmount": "0.00",
                    "benefits": [
                        {
                            "type": "DISCOUNT"
                        }
                    ]
                },
                "offers": [
                    {
                        "totalOfferedAmount": "30000.00",
                        "offerId": "f00fd3e9-5653-4d96-ad3c-7b4755d437b2",
                        "merchantDiscountAmount": "0.00",
                        "discountAmount": "30000.00",
                        "cashbackAmount": "0.00"
                    }
                ]
            }
        ]
    },
    "errorMessage": "",
    "errorCode": "",
    "error": false
}
```



---

## See Also

- [Integration Architecture](https://juspay.io/in/docs/offer-engine/docs/ec-sdk-integration/integration-architecture)
- [SDK Process Payload](https://juspay.io/in/docs/offer-engine/docs/ec-sdk-integration/sdk-process-payload)
