summaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/SourceConfig.md
diff options
context:
space:
mode:
Diffstat (limited to 'jb-ui/src/api_fsb/docs/SourceConfig.md')
-rw-r--r--jb-ui/src/api_fsb/docs/SourceConfig.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/SourceConfig.md b/jb-ui/src/api_fsb/docs/SourceConfig.md
new file mode 100644
index 0000000..6ce0707
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/SourceConfig.md
@@ -0,0 +1,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)