Files
openrtb/2.3/rtb/regs.go
T
Max Cherry 38159be011 gofmt
2015-05-10 12:20:47 +03:00

34 lines
993 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package rtb
// Flag indicating if this request is subject to the COPPA
// regulations established by the USA FTC, where 0 = no, 1 = yes.
const (
RegsCOPPANo int8 = 0 // 0 = no
RegsCOPPAYes int8 = 1 // 1 = yes
)
// 3.2.16 Object: Regs
//
// This object contains any legal, governmental, or industry regulations that apply to the request. The coppa flag
// signals whether or not the request falls under the United States Federal Trade Commissions regulations for the
// United States Childrens Online Privacy Protection Act (“COPPA”). Refer to Section 7.1 for more information.
type Regs struct {
// Attribute:
// coppa
// Type:
// integer
// Description:
// Flag indicating if this request is subject to the COPPA
// regulations established by the USA FTC, where 0 = no, 1 = yes.
COPPA int8 `json:"coppa"`
// Attribute:
// ext
// Type:
// object
// Description:
// Placeholder for exchange-specific extensions to OpenRTB.
Ext Ext `json:"ext"`
}