From 0741b9cd7e7d9298ca654e5571f9d4866524c7ad Mon Sep 17 00:00:00 2001 From: mrz1836 Date: Mon, 4 Oct 2021 11:10:21 -0400 Subject: [PATCH] PPCBid is now ContractRequired --- models.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/models.go b/models.go index 90f6095..24c2ce4 100644 --- a/models.go +++ b/models.go @@ -89,20 +89,17 @@ type CampaignImage struct { } // CampaignRequirements is the structure for "requirements" -// -// DO NOT CHANGE ORDER - malign -// type CampaignRequirements struct { - VisitorCountries []string `json:"visitor_countries"` + ContractRequired bool `json:"contract_required"` DotWallet bool `json:"dotwallet"` Facebook bool `json:"facebook"` Google bool `json:"google"` HandCash bool `json:"handcash"` KYC bool `json:"kyc"` MoneyButton bool `json:"moneybutton"` - PPCBid bool `json:"ppc_bid"` Relay bool `json:"relay"` Twitter bool `json:"twitter"` + VisitorCountries []string `json:"visitor_countries"` VisitorRestrictions bool `json:"visitor_restrictions"` }