aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/SupplyPolicy.md
diff options
context:
space:
mode:
authorMax Nanis2026-02-18 20:42:03 -0500
committerMax Nanis2026-02-18 20:42:03 -0500
commit3eaa56f0306ead818f64c3d99fc6d230d9b970a4 (patch)
tree9fecc2f1456e6321572e0e65f57106916df173e2 /jb-ui/src/api_fsb/docs/SupplyPolicy.md
downloadamt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.tar.gz
amt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.zip
HERE WE GO, HERE WE GO, HERE WE GO
Diffstat (limited to 'jb-ui/src/api_fsb/docs/SupplyPolicy.md')
-rw-r--r--jb-ui/src/api_fsb/docs/SupplyPolicy.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/SupplyPolicy.md b/jb-ui/src/api_fsb/docs/SupplyPolicy.md
new file mode 100644
index 0000000..6d72fa9
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/SupplyPolicy.md
@@ -0,0 +1,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)