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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# SupplyPolicy
One policy describing how GRL can interact with a marketplaces in a certain way. This is only used on the special \"global product\", and then internally in grpc logic.
## 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]
**address** | **Array<string>** | address for the grpc GetOpps call | [default to undefined]
**allow_vpn** | **boolean** | | [optional] [default to false]
**distribute_harmonizer_active** | **boolean** | | [optional] [default to true]
**supplier_id** | **string** | | [optional] [default to undefined]
**team_ids** | **Array<string>** | | [optional] [default to undefined]
**product_ids** | **Array<string>** | | [optional] [default to undefined]
**integration_mode** | [**IntegrationMode**](IntegrationMode.md) | | [optional] [default to undefined]
**scope** | [**Scope**](Scope.md) | There must be only 1 GLOBAL config per Source. We can have more than one TEAM/PRODUCT config per Source. | [readonly] [default to undefined]
## Example
```typescript
import { SupplyPolicy } from './api';
const instance: SupplyPolicy = {
name,
active,
banned_countries,
allow_mobile_ip,
allow_pii_only_buyers,
allow_unhashed_buyers,
withhold_profiling,
pass_unconditional_eligible_unknowns,
address,
allow_vpn,
distribute_harmonizer_active,
supplier_id,
team_ids,
product_ids,
integration_mode,
scope,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|