blob: 6ce0707eed86c1b4f796a0c443f63654a5b8a85e (
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
|
# SourceConfig
This could also be named \"BP:Marketplace Config\", as it describes the config for a BP on a single marketplace.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | [**Source**](Source.md) | | [default to undefined]
**active** | **boolean** | | [optional] [default to true]
**banned_countries** | **Array<string>** | | [optional] [default to undefined]
**allow_mobile_ip** | **boolean** | | [optional] [default to true]
**allow_pii_only_buyers** | **boolean** | Allow Tasks from Buyers that want traffic that comes from Suppliers that can identify their users. Only supported on Pure Spectrum. | [optional] [default to false]
**allow_unhashed_buyers** | **boolean** | Return Tasks from Buyers that don\'t have URL hashing enabled. Only supported on Pure Spectrum. | [optional] [default to false]
**withhold_profiling** | **boolean** | For some Products, we may have privacy agreements prohibiting us from sharing information with the inventorySource. If True, don\'t add MRPQ (Market Research ProfilingQuestion) onto the entry link. | [optional] [default to false]
**pass_unconditional_eligible_unknowns** | **boolean** | Not used at the moment | [optional] [default to true]
## Example
```typescript
import { SourceConfig } from './api';
const instance: SourceConfig = {
name,
active,
banned_countries,
allow_mobile_ip,
allow_pii_only_buyers,
allow_unhashed_buyers,
withhold_profiling,
pass_unconditional_eligible_unknowns,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|