blob: 56c21c3e920714d1f8b698da04440cf09d88e07e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# OrderData
Stores payout-type-specific order information that is returned from the external payout provider.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **string** | | [optional] [default to TypeEnum_CashInMail]
**shipping_cost** | **number** | | [default to undefined]
**tracking_number** | **string** | | [optional] [default to undefined]
**shipping_method** | [**ShippingMethod**](ShippingMethod.md) | | [optional] [default to undefined]
**carrier** | [**ShippingCarrier**](ShippingCarrier.md) | | [optional] [default to undefined]
**ship_date** | **string** | | [optional] [default to undefined]
**estimated_delivery_date** | **string** | | [optional] [default to undefined]
**delivery_status** | [**DeliveryStatus**](DeliveryStatus.md) | | [optional] [default to undefined]
**last_updated** | **string** | | [optional] [default to undefined]
## Example
```typescript
import { OrderData } from './api';
const instance: OrderData = {
type,
shipping_cost,
tracking_number,
shipping_method,
carrier,
ship_date,
estimated_delivery_date,
delivery_status,
last_updated,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|