blob: 60f716f3e36252381c78de84d19e72cd9e7f2c4b (
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
|
# Data
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **string** | | [optional] [default to TypeEnum_Paypal]
**email** | **string** | Email address of the paypal user | [default to undefined]
**utid** | **string** | tango utid | [default to undefined]
**countries** | **Array<string>** | | [default to undefined]
**value_type** | **string** | | [default to undefined]
**disclaimer** | **string** | | [optional] [default to '']
**terms** | **string** | | [optional] [default to '']
**delivery_address** | [**USDeliveryAddress**](USDeliveryAddress.md) | Delivery address where payment should be sent | [default to undefined]
## Example
```typescript
import { Data } from './api';
const instance: Data = {
type,
email,
utid,
countries,
value_type,
disclaimer,
terms,
delivery_address,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|