# OrderEntity


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cf_order_id** | **string** | unique id generated by cashfree for your order. | [optional] [default to undefined]
**order_id** | **string** | order_id sent during the api request. | [optional] [default to undefined]
**entity** | **string** | Type of the entity. | [optional] [default to undefined]
**order_currency** | **string** | Currency of the order. Example INR. | [optional] [default to undefined]
**order_amount** | **number** |  | [optional] [default to undefined]
**order_status** | **string** | Possible values are  - &#x60;ACTIVE&#x60;: Order does not have a sucessful transaction yet - &#x60;PAID&#x60;: Order is PAID with one successful transaction - &#x60;EXPIRED&#x60;: Order was not PAID and not it has expired. No transaction can be initiated for an EXPIRED order. &#x60;TERMINATED&#x60;: Order terminated &#x60;TERMINATION_REQUESTED&#x60;: Order termination requested. | [optional] [default to undefined]
**payment_session_id** | **string** |  | [optional] [default to undefined]
**order_expiry_time** | **string** |  | [optional] [default to undefined]
**order_note** | **string** | Additional note for order. | [optional] [default to undefined]
**created_at** | **string** | When the order was created at cashfree\&#39;s server. | [optional] [default to undefined]
**order_splits** | [**Array&lt;VendorSplit&gt;**](VendorSplit.md) |  | [optional] [default to undefined]
**customer_details** | [**CustomerDetailsResponse**](CustomerDetailsResponse.md) |  | [optional] [default to undefined]
**order_meta** | [**OrderMeta**](OrderMeta.md) |  | [optional] [default to undefined]
**order_tags** | **{ [key: string]: string; }** | Custom Tags in the form of {\&quot;key\&quot;:\&quot;value\&quot;} which can be passed for an order. A maximum of 10 tags can be added. | [optional] [default to undefined]
**cart_details** | [**CartDetailsEntity**](CartDetailsEntity.md) |  | [optional] [default to undefined]
**terminal_data** | [**TerminalData**](TerminalData.md) |  | [optional] [default to undefined]
**products** | [**OrderEntityProducts**](OrderEntityProducts.md) |  | [optional] [default to undefined]

## Example

```typescript
import { OrderEntity } from 'cashfree-pg';

const instance: OrderEntity = {
    cf_order_id,
    order_id,
    entity,
    order_currency,
    order_amount,
    order_status,
    payment_session_id,
    order_expiry_time,
    order_note,
    created_at,
    order_splits,
    customer_details,
    order_meta,
    order_tags,
    cart_details,
    terminal_data,
    products,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
