Skip to content

Commit

Permalink
Update openrtb.go
Browse files Browse the repository at this point in the history
  • Loading branch information
codenaugh authored Feb 16, 2024
1 parent 9f4b153 commit 9d2f6c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openrtb.go
Original file line number Diff line number Diff line change
Expand Up @@ -831,9 +831,9 @@ type Segment struct {
// coppa flag signals whether or not the request falls under the United States Federal Trade Commission's
// regulations for the United States Children's Online Privacy Protection Act ("COPPA").
type Regulations struct {
COPPA int `json:"coppa,omitempty"` // Flag indicating if this request is subject to the COPPA regulations established by the USA FTC, where 0 = no, 1 = yes.
GDPR int `json:"gdpr,omitempty"` // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown.
USPrivacy string `json:"us_privacy"` // Communicates signals regarding consumer privacy under US privacy regulation.
COPPA int `json:"coppa,omitempty"` // Flag indicating if this request is subject to the COPPA regulations established by the USA FTC, where 0 = no, 1 = yes.
GDPR int `json:"gdpr,omitempty"` // Flag that indicates whether or not the request is subject to GDPR regulations 0 = No, 1 = Yes, omission indicates Unknown.
USPrivacy string `json:"us_privacy,omitempty"` // Communicates signals regarding consumer privacy under US privacy regulation.
Ext json.RawMessage `json:"ext,omitempty"`
}

Expand Down

0 comments on commit 9d2f6c8

Please sign in to comment.