All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ubleclick.doubleclick-core.1.0.4.compat.source-code.network-bid.proto Maven / Gradle / Ivy

syntax = "proto2";
package com.google.protos.adx;
option java_outer_classname = "NetworkBid";

// Synchronized with v.84
// https://developers.google.com/ad-exchange/rtb/downloads/realtime-bidding-proto.txt

// Copyright 2016 Google Inc. All Rights Reserved.

// This is the message that Google uses to request bids. A single BidRequest
// includes all applicable ad slots from a single impression.
//
message BidRequest {
  // Unique request id generated by Google. This is 16 bytes long.
  required bytes id = 2;

  // -----------------------------------------------------------
  // This section lists information that we know about the user.

  // The first 3 bytes of the IP address in network byte order for IPv4, or the
  // first 6 bytes for IPv6. Note that the number and position of the bytes
  // included from IPv6 addresses may change later.
  optional bytes ip = 4;


  // Reasons for constrained usage treatment of user data (google_user_id,
  // hosted_match_data, IDFA, etc).
  enum UserDataTreatment {
    // The current request should be treated as child-directed for purposes of
    // the Children's Online Privacy Protection Act. See
    // https://support.google.com/adxseller/answer/4442399 for more information.

    TAG_FOR_CHILD_DIRECTED_TREATMENT = 0;
  }

  // When set, the user's cookie/id data allows only restricted usage and is not
  // available in the usual fields. Instead the data may be accessed through
  // the constrained usage fields and stricter usage policies apply. There may
  // be multiple restrictions applicable at the same time. You must only use
  // the data for use cases allowed by all restrictions.
  // You will receive the user_data_treatment value in BidRequests if there are
  // any applicable restrictions. However, you must be whitelisted in order to
  // receive the constrained usage user data fields. See
  // https://developers.google.com/ad-exchange/rtb/user_data_treatments for
  // more information.
  // The impacted fields are:
  //  * google_user_id: use constrained_usage_google_user_id
  //  * hosted_match_data: use constrained_usage_hosted_match_data
  //  * mobile.encrypted_advertising_id: use
  //    mobile.constrained_usage_encrypted_advertising_id
  //  * mobile.encrypted_hashed_idfa: use
  //    mobile.constrained_usage_encrypted_hashed_idfa
  repeated UserDataTreatment user_data_treatment = 49;

  // The Google ID for the user as described in the documentation for the cookie
  // matching service. This field is the unpadded web-safe base64 encoded
  // version of a binary cookie id. See the "Base 64 Encoding with URL and
  // Filename Safe Alphabet" section in RFC 3548 for encoding details. This
  // field is the same as the Google ID returned by the cookie matching service.
  // Not set if there is one or more user_data_treatment value, see
  // constrained_usage_google_user_id instead.
  optional string google_user_id = 21;

  // Only set if there is one or more user_data_treatment value. If
  // constrained_usage_google_user_id is set, then google_user_id is not set.
  // You must be whitelisted for all user_data_treatments in this request in
  // order to receive this field.
  optional string constrained_usage_google_user_id = 47;

  // The version number of the google_user_id. We may sometimes change the
  // mapping from cookie to google_user_id. In this case the version will be
  // incremented.
  optional uint32 cookie_version = 20;

  // The time in seconds since the google_user_id was created.
  // This number may be quantized.
  optional int32 cookie_age_seconds = 31;

  // Match data stored for this google_user_id through the cookie matching
  // service. If a match exists, then this field holds the decoded data that
  // was passed in the google_hm parameter.
  // Not set if there is one or more user_data_treatment value, see
  // constrained_usage_hosted_match_data instead.
  optional bytes hosted_match_data = 37;

  // Only set if there is one or more user_data_treatment value. If
  // constrained_usage_hosted_match_data is set, then hosted_match_data is not
  // set. You must be whitelisted for all user_data_treatments in this request
  // in order to receive this field.
  optional bytes constrained_usage_hosted_match_data = 48;

  // A string that identifies the browser and type of device that sent the
  // request.
  optional string user_agent = 6;

  // Geo information. These use a subset of the codes used in the AdWords API.
  // See the geo-table.csv table in the technical documentation for a list of
  // ids. The geo_criteria_id field replaces the deprecated country, region,
  // city, and metro fields.
  optional int32 geo_criteria_id = 39;

  // Detected postal code of the appropriate type for the country (e.g. zip code
  // if the country is "US"). The postal_code_prefix field is set when accuracy
  // is too low to imply a full code, otherwise the postal_code field is set.
  optional string postal_code = 33;
  optional string postal_code_prefix = 34;

  // A hyperlocal targeting location when available.
  //
  message Hyperlocal {
    // A location on the Earth's surface.
    //
    message Point {
      optional float latitude = 1;
      optional float longitude = 2;
    }

    // The mobile device can be at any point inside the geofence polygon defined
    // by a list of corners. Currently, the polygon is always a parallelogram
    // with 4 corners.
    repeated Point corners = 1;
  }

  message HyperlocalSet {
    // This field currently contains at most one hyperlocal polygon.
    repeated Hyperlocal hyperlocal = 1;

    // The approximate geometric center of the geofence area. It is calculated
    // exclusively based on the geometric shape of the geofence area and in no
    // way indicates the mobile device's actual location within the geofence
    // area. If multiple hyperlocal polygons are specified above then
    // center_point is the geometric center of all hyperlocal polygons.
    optional Hyperlocal.Point center_point = 2;
  }

  // Hyperlocal targeting signal when available, encrypted as described at
  // https://developers.google.com/ad-exchange/rtb/response-guide/decrypt-hyperlocal
  optional bytes encrypted_hyperlocal_set = 40;
  // Unencrypted version of encrypted_hyperlocal_set. This field is only set
  // when using an SSL connection.
  optional HyperlocalSet hyperlocal_set = 53;

  // The offset of the user's time from GMT in minutes. For example, GMT+10 is
  // timezone_offset = 600.
  optional int32 timezone_offset = 25;

  // List of detected user verticals. Currently unused.
  repeated int32 user_vertical = 30 [
      packed=true
  ];

  // Demographic data provided by the publisher.
  message UserDemographic {
    enum Gender {
      UNKNOWN = 0;
      MALE = 1;
      FEMALE = 2;
    }
    // Gender
    optional Gender gender = 1 [
        default = UNKNOWN
    ];

    // Age interval
    optional int32 age_low = 2 [
        default = 0];
    optional int32 age_high = 3 [
        default = 999];
  }
  optional UserDemographic user_demographic = 50;

  // This field is not populated by default. We recommend that bidders instead
  // store and look up list ids using either google_user_id or hosted_match_data
  // as keys.
  //
  message UserList {
    // The user list id.
    optional int64 id = 1;

    // The time in seconds since the user was added to the list.
    optional int32 age_seconds = 2;
  }
  repeated UserList user_list = 32;

  // -----------------------------------------------------------
  // This section lists information that we know about the web page or mobile
  // application where the impression originates.

  // The seller network id. See seller-network-ids.txt file in the technical
  // documentation for a list of ids. This is only set if the site is not
  // anonymous and the publisher allows site targeting.
  optional int32 seller_network_id = 41;
  // Id for the partner that provides this inventory. This is only set when
  // seller_network_id is also set and further partner information beyond the
  // seller_network_id is also available. The value of the partner_id is not
  // meaningful beyond providing a stable identifier.
  optional fixed64 partner_id = 52;

  // The URL of the page with parameters removed. This is only set if the site
  // is not anonymous and the publisher allows site targeting. You can use
  // anonymous_id for targeting if the inventory is anonymous. Otherwise, use
  // detected_vertical's. Only one of url or anonymous_id is ever set in the
  // same request.
  optional string url = 11;

  // An id for the domain of the page. This is set when the inventory is
  // anonymous. Only one of url or anonymous_id is ever set in the same
  // request.
  optional string anonymous_id = 19;

  // Detected user languages, based on the language of the web page, the browser
  // settings, and other signals. The order is arbitrary. The codes are 2 or 5
  // letters and are documented at
  // https://developers.google.com/adwords/api/docs/appendix/languagecodes
  repeated string detected_language = 12;

  // One or more detected verticals for the page as determined by Google.
  //
  message Vertical {
    // The vertical id. See the publisher-verticals.txt file in the technical
    // documentation for a list of ids.
    required int32 id = 1;

    // Weight for this vertical, in the (0.0, 1.0] range. More relevant
    // verticals have higher weights.
    required float weight = 2;
  }

  // Unordered list of detected content verticals. See the
  // publisher-verticals.txt file in the technical documentation for a list of
  // ids.
  repeated Vertical detected_vertical = 13;

  // List of detected content labels. See content-labels.txt file in the
  // technical documentation for a list of ids.
  repeated int32 detected_content_label = 26 [packed=true];

  // Information about the device.
  message Device {
    // The type of device on which the ad will be shown.
    enum DeviceType {
      UNKNOWN_DEVICE = 0;
      HIGHEND_PHONE = 1;
      TABLET = 2;
      PERSONAL_COMPUTER = 3;  // Desktop or laptop devices.
      CONNECTED_TV = 4;  // Includes both TVs and set-top boxes.
      GAME_CONSOLE = 5;
    }
    optional DeviceType device_type = 1 [default = UNKNOWN_DEVICE];

    // The platform of the device. Examples: android, iphone, palm
    optional string platform = 2;

    // The brand of the device, e.g. Nokia, Samsung.
    optional string brand = 3 [default = ""];

    // The model of the device, e.g. N70, Galaxy.
    optional string model = 4 [default = ""];

    // Contains the OS version of the platform. For instance, for Android 2,
    // major=2, minor=0. For iPhone 3.3.1, major=3 and minor=3.
    message OsVersion {
      optional int32 major = 1;
      optional int32 minor = 2;
      optional int32 micro = 3;
    }
    // The OS version; e.g. 2 for Android 2.1, or 3.3 for iOS 3.3.1.
    optional OsVersion os_version = 5;

    // Unique identifier for the mobile carrier if the device is connected to
    // the internet via a carrier (as opposed to via WiFi). To look up carrier
    // name and country from carrier ID, please refer to:
    // https://developers.google.com/adwords/api/docs/appendix/mobilecarriers.
    optional int64 carrier_id = 6;

    // The width of the device screen in pixels.
    optional int32 screen_width = 7 [default = 0];

    // The height of the device screen in pixels.
    optional int32 screen_height = 8 [default = 0];

    // Used for high-density devices (e.g. iOS retina displays).  A non-default
    // value indicates that the nominal screen size (with pixels as the unit)
    // does not describe the actual number of pixels in the screen. For example,
    // nominal width and height may be 320x640 for a screen that actually has
    // 640x1080 pixels, in which case screen_width=320, screen_height=640, and
    // screen_pixel_ratio_millis=2000, since each axis has twice as many pixels
    // as its dimensions would indicate.
    optional int32 screen_pixel_ratio_millis = 9 [default = 0];

    enum ScreenOrientation {
      UNKNOWN_ORIENTATION = 0;
      PORTRAIT = 1;
      LANDSCAPE = 2;
    }
    // The screen orientation of the device when the ad request is sent.
    optional ScreenOrientation screen_orientation = 10 [
        default = UNKNOWN_ORIENTATION];

    // Apple iOS device model, e.g., "iphone 5s", "iphone 6+", "ipad 4".
    optional string hardware_version = 11;
  }
  optional Device device = 54;

  // Additional key-value attributes. Currently unused.
  message KeyValue {
    optional string key = 1;
    optional string value = 2;
  }
  repeated KeyValue key_value = 38;

  // Information for ad queries coming from mobile devices. A mobile device is
  // either a smartphone or a tablet. This is present for ad queries both from
  // mobile devices browsing the web and from mobile apps.
  message Mobile {
    // If true, then this request is from a mobile application. Will always be
    // true when app_id is set. May also be true for anonymous inventory, in
    // which case anonymous_id will be set.
    optional bool is_app = 7 [default = false];

    // The identifier of the mobile app when this ad query comes from a mobile
    // app. If the app was downloaded from the Apple iTunes app store, then
    // this is the app-store id. For Android devices, this is the fully
    // qualified package name. Examples: 343200656, com.rovio.angrybirds
    optional string app_id = 6;

    // If true, then this is a mobile full screen ad request.
    optional bool is_interstitial_request = 10 [default = false];

    // This field contains the IDs of categories to which the current mobile app
    // belongs. This field will be empty if is_app is false. The mapping between
    // mobile apps and categories is defined by the Google Play Store for
    // Android apps, or the Apple iTunes Store for iOS apps. To look up category
    // name from category ID, please refer to
    // https://developers.google.com/adwords/api/docs/appendix/mobileappcategories
    repeated int32 app_category_ids = 11;

    // For a mobile web request, this field indicates whether the page is
    // optimized for mobile browsers on high-end mobile phones.
    optional bool is_mobile_web_optimized = 17 [default=false];

    // Apple's identifier for advertising (IDFA) as described at
    // https://support.google.com/adxbuyer/answer/3221407 or Android's
    // advertising identifier. When the encrypted_advertising_id is an IDFA, the
    // plaintext after decrypting the ciphertext is the IDFA (16 byte UUID)
    // returned by iOS's [ASIdentifierManager advertisingIdentifier]. For
    // encrypted_hashed_idfa, the plaintext is the 16 byte MD5 hash of the
    // IDFA. Only one of the two fields will be available, depending on the
    // version of the SDK making the request. Later SDKs provide unhashed
    // values. They are not set if there is one or more user_data_treatment
    // value in the BidRequest, see constrained_usage_encrypted_advertising_id
    // and constrained_usage_encrypted_hashed_idfa instead.
    optional bytes encrypted_advertising_id = 20;

    // Unencrypted version of encrypted_advertising_id. This field is only set
    // when using an SSL connection. This field is a 16 byte UUID.
    optional bytes advertising_id = 27;

    optional bytes encrypted_hashed_idfa = 21;

    // Unencrypted version of encrypted_hashed_idfa. This field is only set
    // when using an SSL connection. This field is a 16 byte MD5.
    optional bytes hashed_idfa = 28;

    // Only set if the BidRequest contains one or more user_data_treatment
    // value. If constrained_usage_encrypted_advertising_id or
    // constrained_usage_encrypted_hashed_idfa is set, then the corresponding
    // non-constrained field is not set. You must be whitelisted for all
    // user_data_treatments in this request in order to receive these fields.
    optional bytes constrained_usage_encrypted_advertising_id = 22;

    // Unencrypted version of constrained_usage_encrypted_advertising_id. This
    // field is only set when using an SSL connection. This field is a 16 byte
    // UUID.
    optional bytes constrained_usage_advertising_id = 29;

    optional bytes constrained_usage_encrypted_hashed_idfa = 23;

    // Unencrypted version of constrained_usage_encrypted_hashed_idfa. This
    // field is only set when using an SSL connection. This field is a 16 byte
    // MD5.
    optional bytes constrained_usage_hashed_idfa = 30;

    // App name for Android apps in Google Play store.
    optional string app_name = 24;

    // Average user rating for the app. The range of user rating is between 1.0
    // and 5.0. Currently only available for apps in Google Play store.
    optional float app_rating = 25;

    // These are deprecated. Please ignore.
    optional string DEPRECATED_app_name = 1;
    optional string DEPRECATED_company_name = 2;
    optional string DEPRECATED_platform = 3;
    optional string DEPRECATED_carrier_name = 4;
    optional string DEPRECATED_carrier_country = 5;
    enum MobileDeviceType {
      UNKNOWN = 0;
      HIGHEND_PHONE = 1;
      TABLET = 2;
    }
    optional MobileDeviceType DEPRECATED_mobile_device_type = 8
        [default = UNKNOWN];
    enum ScreenOrientation {
      SCREEN_ORIENTATION_UNKNOWN = 0;
      SCREEN_ORIENTATION_PORTRAIT = 1;
      SCREEN_ORIENTATION_LANDSCAPE = 2;
    }
    optional int32 DEPRECATED_screen_orientation = 9 [default = 0];
    optional string DEPRECATED_brand = 12;
    optional string DEPRECATED_model = 13;
    message DeviceOsVersion {
      optional int32 os_version_major = 1;
      optional int32 os_version_minor = 2;
      optional int32 os_version_micro = 3;
    }
    optional DeviceOsVersion DEPRECATED_os_version = 14;
    optional int32 DEPRECATED_screen_width = 15;
    optional int32 DEPRECATED_screen_height = 16;
    optional int64 DEPRECATED_carrier_id = 18;
    optional int32 DEPRECATED_device_pixel_ratio_millis = 19 [default = 1000];
  }
  optional Mobile mobile = 28;

  // Information about the video if this is an in-video ad request.
  //
  message Video {
    // Describes where the video ad will play.
    enum Placement {
      UNKNOWN_PLACEMENT = 0;

      // Instream means the ad plays before, during, or after other video
      // content. This is similar to a traditional TV commercial. The video
      // content the user is watching does not play while the ad is playing.
      INSTREAM = 1;

      // Interstitial means the video ad plays in front of non-video content,
      // (e.g. a news article or video game). The ad covers all or nearly all of
      // the space on the screen occupied by the content and the user is not
      // able to proceed to the content until the ad has finished or been
      // skipped.
      INTERSTITIAL = 2;
    }
    optional Placement placement = 16 [default=UNKNOWN_PLACEMENT];

    // The URL of the page that the publisher gives Google to describe the video
    // content, with parameters removed.
    optional string description_url = 10;

    // If true, the video is embedded on a page outside the publisher's domain.
    // When this is set, description_url points to a description of the video
    // (as it always does), and the url field in BidRequest is the page in which
    // the video is embedded. For example, a request for an in-stream ad in a
    // Vimeo video shared on Facebook has is_embedded_offsite set. The url field
    // is for a Facebook page and the description_url points to the video on
    // Vimeo.
    optional bool is_embedded_offsite = 11 [default = false];

    // Describes how the video ad will be played. The playback method is
    // determined to be auto-play or click-to-play based on the best measurement
    // available. This includes things like how recently the user interacted
    // with a web page. For auto-play, ads can start playing with the sound on
    // or off. Some ads (e.g. in-feed ads) are muted until the user interacts
    // with the ad. Alternatively, if an ad would normally play with the sound
    // on but the device is muted then the value will be set to sound off. For
    // devices where it is not possible to determine if the device is muted
    // (e.g. desktop), we assume that sound is on.
    enum VideoPlaybackMethod {
      METHOD_UNKNOWN = 0;
      AUTO_PLAY_SOUND_ON = 1;
      AUTO_PLAY_SOUND_OFF = 2;
      CLICK_TO_PLAY = 3;
    };
    optional VideoPlaybackMethod playback_method = 14
        [default = METHOD_UNKNOWN];

    // Whether the inventory allows clicking on the video ad to take the user to
    // an advertiser site.  Some platforms, notably connected TVs, do not
    // support clicking on video ads, in which case this field is set to false.
    optional bool is_clickable = 15;

    // The time in milliseconds from the start of the video when the ad will be
    // displayed. 0 means pre-roll and -1 means post-roll. The value is valid
    // only if this param is set. When not set, the display position is unknown.
    optional int32 videoad_start_delay = 1;

    // The maximum duration in milliseconds of the ad that you should return.
    // If this is not set or has value <= 0, any duration is allowed.
    optional int32 max_ad_duration = 2;

    // The minimum duration in milliseconds of the ad that you should return.
    // If this is not set or has value <= 0, there is no minimum duration.
    optional int32 min_ad_duration = 8;

    // The maximum number of ads in an Adx video pod. A non-zero value indicates
    // that the current ad slot is a video pod that can show multiple video
    // ads. Actual number of video ads shown can be less than or equal to this
    // value but cannot exceed it.
    optional int32 max_ads_in_pod = 12;

    // Does the publisher allow/require/block skippable video ads?
    enum SkippableBidRequestType {
      ALLOW_SKIPPABLE = 0;
      REQUIRE_SKIPPABLE = 1;
      BLOCK_SKIPPABLE = 2;
    }
    optional SkippableBidRequestType video_ad_skippable = 4 [default =
        ALLOW_SKIPPABLE];

    // The maximum duration in milliseconds for the ad you should return, if
    // this ad is skippable (this generally differs from the maximum duration
    // allowed for non-skippable ads). If this is not set or has value <= 0, any
    // duration is allowed.
    optional int32 skippable_max_ad_duration = 5;

    // The video file formats that are allowed for this request. The response
    // should support at least one of them.
    enum VideoFormat {
      VIDEO_FLV = 0;    // Flash video files are accepted (FLV).
      VIDEO_MP4 = 1;
      YT_HOSTED = 2;    // Valid VAST ads with at least one media file hosted
                        // on youtube.com.
      VPAID_FLASH = 3;  // Flash VPAID (SWF).
      VPAID_JS = 4;     // JavaScript VPAID.
    };
    repeated VideoFormat allowed_video_formats = 6;

    // Information about the companion ad slots that can be shown with the
    // video. While this is a repeated field there will only be one value in
    // most cases. If there are no companion ads available this field will not
    // be set.
    //
    message CompanionSlot {
      // These fields represent the available heights and widths in this slot.
      // There will always be the same number heights and widths fields.
      repeated int32 height = 1 [packed=true];
      repeated int32 width  = 2 [packed=true];

      // These are the formats of the creatives allowed in this companion ad
      // slot.
      enum CreativeFormat {
        IMAGE_CREATIVE = 0;
        FLASH_CREATIVE = 1;
        HTML_CREATIVE  = 2;
      }
      repeated CreativeFormat creative_format = 3;
    }
    repeated CompanionSlot companion_slot = 7;

    // End cap support. When enabled, the companion ad can be picked to be
    // rendered as an end cap (info card) in the video slot after the video
    // ad finishes playing. If multiple companion ads are returned, IMA SDK
    // chooses one which best matches the device screen size. End cap is
    // supported only on mobile video interstitial inventory. As of August 2015,
    // END_CAP_FORBIDDEN and END_CAP_REQUIRED are not supported.
    enum EndCapSupport {
      END_CAP_NOT_ENABLED = 0;  // Companion ad won't be rendered as end cap.
      END_CAP_OPTIONAL = 1;     // End cap will be rendered if response contains
                                // eligible companion banner, but companion
                                // banner is not required.
      END_CAP_FORBIDDEN = 2;    // Response with companion ad is filtered.
      END_CAP_REQUIRED = 3;     // Response without companion ad is filtered.
    }
    optional EndCapSupport end_cap_support = 13 [default =
        END_CAP_NOT_ENABLED];

    // Attributes of the video that the user is viewing, not the video ad.
    // These fields are based on the availability of the video metadata from the
    // video publisher and may not always be populated.
    //
    message ContentAttributes {
      // The title of the video.
      optional string title = 1;

      // The duration of the video, in seconds.
      optional int32 duration_seconds = 2;

      // A list of keywords describing the video, extracted from the content
      // management system of the video publisher. There will be no more than 10
      // keywords in this list.
      repeated string keywords = 3;
    }
    optional ContentAttributes content_attributes = 9;

    // The type of inventory from which request is sent.
    // Deprecated but will continue to be filled in until January 2017.
    // Use the placement field to determine if inventory is interstitial or
    // instream.  Use Device.device_type to determine if the request comes from
    // a mobile device and Mobile.is_app to determine if the request comes from
    // an app.
    // WEB_VIDEO is INSTREAM placements from web browsers.
    // GAMES consists of INTERSTITIAL placements from both apps and web
    // browsers.
    // MOBILE_INTERSTITIAL is INTERSTITIAL placements from apps only.
    // This inventory also allows display ads. You can tell if an adslot allows
    // display ads if adslot->excluded_attributes does not contain 21
    // (CreativeType: Html)
    // MOBILE_APP_VIDEO is INSTREAM placement from apps only.
    enum InventoryType {
      WEB_VIDEO = 0;
      GAMES = 1;
      MOBILE_INTERSTITIAL = 2;
      MOBILE_APP_VIDEO = 3;
    }
    optional InventoryType DEPRECATED_inventory_type = 3 [default = WEB_VIDEO];
  }
  optional Video video = 29;

  // The publisher settings list id that applies to this page.
  // See the RTB Publisher Settings guide at
  // https://developers.google.com/ad-exchange/rtb/pub-settings-guide
  // for details.
  optional fixed64 publisher_settings_list_id = 42;

  // Publisher type of the inventory where the ad will be shown. For an AdX
  // publisher, its inventory can be either owned and operated (O&O),
  // represented by the publisher, or of unknown status. AdSense and AdMob
  // inventory is represented by Google.
  enum PublisherType {
    UNKNOWN_PUBLISHER_TYPE = 0;
    ADX_PUBLISHER_OWNED_AND_OPERATED = 1;
    ADX_PUBLISHER_REPRESENTED = 2;
    GOOGLE_REPRESENTED = 3;
  };
  optional PublisherType publisher_type = 51 [default = UNKNOWN_PUBLISHER_TYPE];

  // -----------------------------------------------------------
  // Information about the adslots on the page.
  message AdSlot {

    // An arbitrarily assigned slot id that is unique on a given page and
    // usually starts counting from 1. You use this to identify which slot to
    // bid on in the BidResponse.
    required int32 id = 1;

    // A stable identifier for the combination of publisher, ad slot, and page.
    optional uint64 ad_block_key = 14;

    // Set of channels of which this ad slot is a member. A channel is a set of
    // ad slots on a site. You can target a channel (like "the sports section",
    // or "all top banners") to get more fine-grained control over where your ad
    // shows. Channel names are provided by the publisher.
    repeated string targetable_channel = 10;

    // The width and height in pixels of the allowed ad sizes. Most requests
    // allow only a single size, but some allow more than one. Widths and
    // heights are at the same index. For example, if the width values are
    // [728, 300, 468] and the height values are [90, 250, 60], then the allowed
    // formats are 728x90, 300x250, and 468x60.
    //
    // For VAST video ad requests a single width/height pair specifies the
    // Google-detected video player size.  If Google cannot detect the player
    // size the publisher-provided player size, if available, is used.  For
    // VAST video ads, this size is informational; there is no restriction on
    // the size of the video ad that you can return.
    //
    // For mobile interstitial ads (including ones where video ads are eligible)
    // the first width height pair is the screen size (this is also the video
    // player size for VAST video ads).  Subsequent pairs are recommended
    // interstitial ad sizes that satisfy the interstitial size restrictions,
    // i.e. no bigger than the screen size and no smaller than 50% of width and
    // 40% height.
    repeated int32 width = 2;
    repeated int32 height = 3;

    // The disallowed attribute ids for the ads that can show in this slot. See
    // the publisher-excludable-creative-attributes.txt file in the technical
    // documentation for a list of ids.
    repeated int32 excluded_attribute = 4 [packed=true];

    // The allowed vendor types. See the vendors.txt file in the technical
    // documentation for a list of ids. When the seller_network is GDN, the
    // vendor ids listed in gdn-vendors.txt in the supporting technical
    // documentation are also allowed. This field does not apply to deals with
    // block overrides (see https://support.google.com/adxbuyer/answer/6114194).
    repeated int32 allowed_vendor_type = 6 [packed=true];

    // The disallowed sensitive ad categories. See the
    // ad-sensitive-categories.txt file in the technical documentation for a
    // list of ids. You should enforce these exclusions if you have the ability
    // to classify ads into the listed categories. This field does not apply to
    // deals with block overrides (see
    // https://support.google.com/adxbuyer/answer/6114194).
    repeated int32 excluded_sensitive_category = 7 [packed=true];

    // The allowed restricted ad categories for private and open auctions. See
    // the ad-restricted-categories.txt file in the technical documentation for
    // a list of ids. These only apply for private and open auction bids. See
    // the allowed_restricted_category_for_deals field for preferred deals or
    // programmatic guarantees. If you bid with an ad in a restricted category,
    // you MUST ALWAYS declare the category in the bid response regardless of
    // the values in this field.
    repeated int32 allowed_restricted_category = 16 [packed=true];

    // The allowed restricted ad categories for preferred deals or programmatic
    // guarantees. See the ad-restricted-categories.txt file in the technical
    // documentation for a list of ids. These only apply for preferred deals or
    // programmatic guarantees. See the allowed_restricted_category field for
    // private and open auctions. In some cases, restricted categories are only
    // allowed on preferred deals or programmatic guarantees, so this field
    // lists all categories in allowed_restricted_category, and additionally,
    // restricted categories that are only allowed for preferred deals or
    // programmatic guarantees. If you bid with an ad in a restricted category,
    // you MUST ALWAYS declare the category in the bid response regardless of
    // the values in this field.
    repeated int32 allowed_restricted_category_for_deals = 22 [packed=true];

    // The disallowed ad product categories. See the ad-product-categories.txt
    // file in the technical documentation for a list of ids. You should enforce
    // these exclusions if you have the ability to classify ads into the listed
    // categories. This field does not apply to deals with block overrides (see
    // https://support.google.com/adxbuyer/answer/6114194).
    repeated int32 excluded_product_category = 13 [packed=true];

    // Information about the pre-targeting configs that matched.
    //
    message MatchingAdData {
      // The billing ids corresponding to the pretargeting configs that matched.
      repeated int64 billing_id = 2 [
          packed = false
      ];

      // The minimum CPM value that you can bid to not be filtered before the
      // auction. This may be a global minimum, or it may be a minimum set by
      // the publisher. The value is in micros of your account currency.
      optional int64 minimum_cpm_micros = 5;

      // Publisher open auction pricing rules applicable to a particular buyer.
      message BuyerPricingRule {
        // Only one of the included_advertisers and excluded_advertisers fields
        // can be set in a rule. See advertisers.txt file in the technical
        // documentation for a list of ids.
        repeated int64 included_advertisers = 1;
        repeated int64 excluded_advertisers = 2;

        // Only one of the included_agencies and excluded_agencies fields can be
        // set in a rule. See agencies.txt file in the technical documentation
        // for a list of ids.
        repeated int64 included_agencies = 3;
        repeated int64 excluded_agencies = 4;

        // Only one of the blocked and minimum_cpm_micros can be set in a rule.
        // If set to true, indicates that the specified advertisers/agencies are
        // blocked from bidding.
        optional bool blocked = 5;

        // Minimum CPM value that you can bid to not be filtered before the
        // auction. The value is in micros of the bidder account currency.
        optional int64 minimum_cpm_micros = 6;
      }

      // Publisher open auction pricing rules in priority order, from highest to
      // lowest.
      repeated BuyerPricingRule pricing_rule = 7;

      // Information about any deals that matched for this inventory.
      //
      message DirectDeal {
        // An id identifying the deal.
        optional int64 direct_deal_id = 1;

        // You must bid at least fixed_cpm_micros (in micros of your account
        // currency) in order to paticipate in the deal. If you win, you will be
        // charged fixed_cpm_micros. This does not apply when
        // deal_type=PRIVATE_AUCTION. For private auctions, you must bid at
        // least fixed_cpm_micros and you pay the second price. Bidding higher
        // CPM than fixed_cpm_micros will increase your chance to win when
        // deal_type=PRIVATE_AUCTION, however it will not increase your chance
        // to win in other types of deals.
        optional int64 fixed_cpm_micros = 2;

        // The type of the deal.
        enum DealType {
          UNKNOWN_DEAL_TYPE = 0;
          PREFERRED_DEAL = 1;
          PRIVATE_AUCTION = 2;
        }
        optional DealType deal_type = 3 [default = UNKNOWN_DEAL_TYPE];

        // Whether the publisher has exempted this deal from configured blocks.
        // This setting does not override AdX policies or Ad Review Center
        // decisions.
        optional bool publisher_blocks_overridden = 4 [default = false];

      }
      repeated DirectDeal direct_deal = 6;

      // These are deprecated. Please ignore.
      optional int64 DEPRECATED_campaign_id = 1;
      optional bool DEPRECATED_per_buyer_minimum_cpm = 3;
      optional int64 DEPRECATED_fixed_cpm_micros = 4;
    }
    repeated MatchingAdData matching_ad_data = 9;

    // The publisher settings list ids that apply to this slot.
    // See the RTB Publisher Settings guide at
    // https://developers.google.com/ad-exchange/rtb/pub-settings-guide
    // for details.
    repeated fixed64 publisher_settings_list_id = 15;

    // Visibility information for the slot.
    enum SlotVisibility  {
      NO_DETECTION = 0;
      ABOVE_THE_FOLD = 1;
      BELOW_THE_FOLD = 2;
    }
    optional SlotVisibility slot_visibility = 12 [default = NO_DETECTION];

    // Viewability percentage for the ad slot. This is an estimate of the
    // likelihood that this slot will be viewable by the end user based on
    // historical and environment data. It is expressed as a percentage in the
    // range of [0, 100] and rounded down to the next multiple of 10. The
    // default value -1 indicates that viewability could not be estimated.
    optional int32 viewability = 21 [default = -1];

    // Historical click-through rate for ads served in the ad slot. This is
    // expressed as a fraction in the range [0.0, 1.0]. The default value of
    // -1.0 indicates that historical click-through rate data is not available.
    optional float click_through_rate = 25 [default = -1.0];

    // iFraming state of the ad slot on the webpage where it is present.
    enum IFramingState {
      UNKNOWN_IFRAME_STATE = 0;
      NO_IFRAME = 1;
      SAME_DOMAIN_IFRAME = 2;
      CROSS_DOMAIN_IFRAME = 3;
    };
    optional IFramingState iframing_state = 19 [default = UNKNOWN_IFRAME_STATE];

    // iFrame depth of the ad slot on the webpage where it is present.
    // Currently only set for video ad requests.
    enum IFramingDepth {
      UNKNOWN_IFRAME_DEPTH = 0;
      NOT_IN_IFRAME = 1;
      ONE_IFRAME = 2;
      MULTIPLE_IFRAME = 3;
     };
    optional IFramingDepth iframing_depth = 20 [default = UNKNOWN_IFRAME_DEPTH];

    // A native ad consists of pieces that are rendered by the publisher. A
    // publisher may support multiple distinct native ad templates. If any
    // native templates exist, you must set the native_ad field in the response,
    // and must not set html_snippet or video_url.
    //
    message NativeAdTemplate {
      // Defines the bits used in required_fields and recommended_fields. There
      // is one bit for each of the fields in BidResponse.Ad.NativeAd
      enum Fields {
        HEADLINE = 0x1;
        BODY = 0x2;
        CALL_TO_ACTION = 0x4;
        ADVERTISER = 0x8;
        IMAGE = 0x10;
        LOGO = 0x20;
        APP_ICON = 0x40;
        STAR_RATING = 0x80;
        PRICE = 0x100;
        STORE = 0x200;
      }

      // Bitfield describing which fields are required by the publisher. Bid
      // responses with no value for these fields will be rejected. Click and
      // view tracking urls are always implicitly required.
      optional int64 required_fields = 1;

      // Bitfield describing which fields are recommended by the publisher. All
      // recommended fields are supported, but not all recommended fields are
      // required.
      optional int64 recommended_fields = 2;

      // max_safe_length indicates the maximum number of Unicode characters that
      // are guaranteed to be shown without truncation. Longer strings may or
      // may not be truncated by the publisher during rendering.
      optional int32 headline_max_safe_length = 3;
      optional int32 body_max_safe_length = 4;
      optional int32 call_to_action_max_safe_length = 5;
      optional int32 advertiser_max_safe_length = 6;
      optional int32 store_max_safe_length = 14;
      optional int32 price_max_safe_length = 15;

      // Image widths and heights are specified in pixels. You may provide a
      // larger image in the response.
      optional int32 image_width = 7;
      optional int32 image_height = 8;
      optional int32 logo_width = 9;
      optional int32 logo_height = 10;
      optional int32 app_icon_width = 11;
      optional int32 app_icon_height = 12;
    }
    repeated NativeAdTemplate native_ad_template = 51;

    // Whether the ad request comes directly from the publisher, or whether it
    // is a "passback" impression that has already been offered to and rejected
    // by another ad network or ad exchange.
    enum MediationStatus {
      UNKNOWN = 0;
      DIRECT_REQUEST = 1;
      MEDIATED = 2;
    };
    optional MediationStatus mediation_status = 52 [default = UNKNOWN];

    // Auto refresh settings.
    message AutoRefresh {
      message AutoRefreshSettings {
        enum AutoRefreshType {
          UNKNOWN_AUTO_REFRESH_TYPE = 0;
          USER_ACTION = 1;  // Refresh triggered by user-initiated action such
                            // as scrolling.
          EVENT = 2;  // Event-driven content change. For example, ads refresh
                      // when the football game score changes on the page.
          TIME = 3;   // Time-based refresh. Ads refresh on a predefined time
                      // interval even without user activity.
        }
        // The type of the declared auto refresh.
        optional AutoRefreshType refresh_type = 1
          [default = UNKNOWN_AUTO_REFRESH_TYPE];

        // The minimum refresh interval. This applies to all refresh types.
        optional int32 min_refresh_interval_seconds = 2;
      }

      // The auto-refresh settings that the publisher has on this
      // inventory. This is repeated because publishers may
      // do multiple types of auto refresh on one piece of inventory.
      repeated AutoRefreshSettings refresh_settings = 1;

      // The number of times this ad slot had been refreshed since last page
      // load.
      optional int32 refresh_count = 2 [default = 0];
    }
    optional AutoRefresh auto_refresh = 23;

    // Whether this request originated from a sticky ad slot that scrolls along
    // with the content on the page.
    enum Stickiness {
      UNKNOWN_STICKINESS = 0;
      IS_STICKY = 1;
    }
    optional Stickiness stickiness = 24 [default = UNKNOWN_STICKINESS];

    // Defines who controls the environment that made the ad request and will
    // render the ad. On platforms where code written by Google will handle
    // the ad this field is set to GOOGLE. When this field is PUBLISHER the
    // publisher has placed their own code on the device to handle playback of
    // the ad. There is no technical difference in how these request are
    // handled. You may use this field to differentiate between different
    // environments for non-technical reasons. This field is only set for
    // requests that allow VAST video ads.
    enum Renderer {
      UNKNOWN_RENDERER = 0;
      GOOGLE = 1;
      PUBLISHER = 2;
    }
    optional Renderer renderer = 26 [default = UNKNOWN_RENDERER];

    // These are deprecated. Please ignore.
    repeated int32 DEPRECATED_allowed_attribute = 5;
    repeated bytes DEPRECATED_publisher_settings_list_id = 11;
    repeated string DEPRECATED_excluded_click_through_url = 8;
  }
  repeated AdSlot adslot = 14;

  // Feedback on bids submitted in previous responses. This is only set if
  // real-time feedback is enabled for your bidder. Please contact your account
  // manager if you wish to enable real-time feedback.
  //
  message BidResponseFeedback {
    // The unique id from BidRequest.id
    optional bytes request_id = 1;

    // The index of the BidResponse_Ad if there was more than one. The index
    // starts at zero for the first creative.
    optional int32 creative_index = 2;

    // The status code for the ad. See creative-status-codes.txt in the
    // technical documentation for a list of ids.
    optional int32 creative_status_code = 3;

    // The second price cpm in micros of your account currency if your bid won
    // the auction, or the cpm that must be exceeded to win the auction if your
    // bid was outbid. This is only set if your bid participated in the
    // auction. It is not set if the bid was filtered prior to the auction. It
    // is also witheld if the publisher or winning bidder has opted out of price
    // feedback, or if your account has opted out of sharing winning prices with
    // other bidders.
    optional int64 cpm_micros = 4;
  }
  repeated BidResponseFeedback bid_response_feedback = 44;

  // -----------------------------------------------------------
  // Testing flags.

  // If true, then this is a test request. Results will not be displayed to
  // users and you will not be billed for a response even if it wins the
  // auction. You should still do regular processing since the request may be
  // used to evaluate latencies or for other testing.
  optional bool is_test = 15 [default=false];

  // If true, then this request is intended to measure network latency. Please
  // return an empty BidResponse with only processing_time_ms set as quickly as
  // possible without executing any bidding logic.
  optional bool is_ping = 17 [default=false];

  // If true, then the selective callout model predicted that you will not bid
  // on this request. We send a sampled percentage of such requests so that we
  // can automatically update the model when bidding patterns change.
  optional bool is_predicted_to_be_ignored = 45 [default=false];

  // These are deprecated. Please ignore.
  optional int32 DEPRECATED_protocol_version = 1;
  optional string DEPRECATED_click_tracking_url = 3;
  optional uint64 DEPRECATED_cookie = 5;
  optional string DEPRECATED_country = 7;
  optional string DEPRECATED_region = 8;
  optional string DEPRECATED_city = 9;
  optional int32 DEPRECATED_metro = 10;
  optional bytes DEPRECATED_hashed_cookie = 16;
  repeated string DEPRECATED_excluded_click_through_url = 18;
  optional string DEPRECATED_seller_network = 22;
  optional bytes DEPRECATED_publisher_settings_list_id = 23;
  message MatchingNetwork {
    optional string DEPRECATED_network_id = 1;
    optional string DEPRECATED_google_user_id = 2;
  }
  repeated MatchingNetwork DEPRECATED_matching_network = 27;
  optional bool DEPRECATED_experimental_deadline = 35 [default=false];
  repeated int32 DEPRECATED_site_list_id = 36;
  optional int32 DEPRECATED_vertical_dictionary_version = 24;
}

// This is the message that you return in response to a BidRequest. You may
// specify zero or more ads. For each ad, you should provide a list of ad slots
// on which the ad can run. Ad slots are identifed by AdSlot.id from the
// BidRequest. Each ad can win at most one ad slot. If you do not wish to bid,
// submit a response with no ads and with only the processing_time_ms set.
//
message BidResponse {
  message Ad {

    // A unique identifier chosen by you for the creative in this response.
    // This must always be set, must be limited to at most 64 bytes, and must be
    // a valid UTF8 string. Every buyer_creative_id you use must always be
    // associated with the same creative. This field is used to communicate
    // approval statuses when issues are found. Do not specify the same id for
    // different creatives, or all creatives will be disapproved if a problem
    // with a single creative is found. Do not specify different ids for the
    // same creative in different responses or no creatives will be served since
    // approval status is assigned on a per-id basis.
    optional string buyer_creative_id = 10;

    // The HTML snippet that will be placed on the web page to display the ad.
    // Please use BidResponse.Ad.AdSlot.billing_id to indicate which billing id
    // this snippet is attributed to. Only one of the following should be set:
    // html_snippet, video_url.
    optional string html_snippet = 1;

    // The URL to fetch a video ad. The URL should return an XML response that
    // conforms to the VAST 2.0 or 3.0 standard. Please use
    // BidResponse.Ad.AdSlot.billing_id to indicate which billing id to
    // attribute this ad to. Only one of the following should be set:
    // html_snippet, video_url. Only set this field if the BidRequest is for an
    // in-video ad (BidRequest.video is present).
    optional string video_url = 9;

    // The content of a native ad. Native ads consist of multiple building
    // blocks, which are rendered by the publisher. Only one of the following
    // should be set: html_snippet, video_url, or native_ad.
    // Only set this field if the BidRequest is for a native ad
    // (BidRequest.adslot.native is present).
    //
    message NativeAd {
      // A short title for the ad.
      optional string headline = 1;

      // A long description of the ad.
      optional string body = 2;

      // A label for the button that the user is supposed to click
      optional string call_to_action = 3;

      // The name of the advertiser or sponsor, to be displayed in the ad
      // creative.
      optional string advertiser = 4;

      message Image {
        optional string url = 1;

        // Image width and height are specified in pixels. You may provide a
        // larger image than was requested, so long as the aspect ratio is
        // preserved.
        optional int32 width = 2;
        optional int32 height = 3;
      }

      // A large image.
      optional Image image = 5;

      // A smaller image, for the advertiser's logo.
      optional Image logo = 6;

      // The app icon, for app download ads.
      optional Image app_icon = 7;

      // The app rating in the app store. Must be in the range [0-5].
      optional double star_rating = 8;

      // The URL to use for click tracking. The SDK pings click tracking url on
      // a background thread. When resolving the url, HTTP 30x redirects are
      // followed. The SDK ignores the contents of the response.
      optional string click_tracking_url = 11;

      // The price of the promoted app including the currency info.
      optional string price = 10;

      // The URL to the app store to purchase/download the promoted app.
      optional string store = 12;

      // This field is deprecated.  Please use
      // BidResponse.Ad.impression_tracking_url instead.
      repeated string DEPRECATED_impression_tracking_url = 9;
    };
    optional NativeAd native_ad = 18;

    // The set of destination URLs for the snippet or native ad. This should
    // include the URLs that the user will go to if they click on the displayed
    // ad, and any URLs that are visible in the rendered ad. It should not
    // include intermediate calls to the adserver that are unrelated to the
    // final landing page. This data is used for post-filtering of
    // publisher-blocked URLs among other things. A BidResponse that returns a
    // snippet or video ad but declares no click_through_url will be discarded.
    // Only set this field if html_snippet or video_url or native_ad are set.
    repeated string click_through_url = 4;

    // All vendor types for the ads that may be shown from this snippet. You
    // should only declare vendor ids listed in the vendors.txt file in the
    // technical documentation. We will check to ensure that the vendors you
    // declare are in the allowed_vendor_type list sent in the BidRequest for
    // AdX publishers, or in gdn-vendors.txt for GDN publishers.
    repeated int32 vendor_type = 5;

    // All attributes for the ads that may be shown from this snippet. See
    // buyer-declarable-creative-attributes.txt in the technical documentation
    // for a list of ids. We will check to ensure none of these attributes are
    // in the excluded_attribute list in the BidRequest.
    repeated int32 attribute = 6;

    // All sensitive categories for the ads that may be shown from this snippet.
    // See ad-sensitive-categories.txt in the technical documentation for a list
    // of ids. We will check to ensure none of these categories were in the
    // excluded_sensitive_category list in the BidRequest.
    repeated int32 category = 7;

    // All restricted categories for the ads that may be shown from this
    // snippet. See ad-restricted-categories.txt in the technical documentation
    // for a list of ids. We will check to ensure these categories were listed
    // in the allowed_restricted_category list in the BidRequest. If you are
    // bidding with ads in restricted categories you MUST ALWAYS declare them
    // here.
    repeated int32 restricted_category = 17;

    // All names of the ad's advertisers.
    repeated string advertiser_name = 11;

    // The width and the height in pixels of the ad. Setting these is optional.
    // However, these must be set if the bid BidRequest.AdSlot has more than one
    // width and height or if BidRequest.Mobile.is_interstitial_request is true.
    optional int32 width = 14;
    optional int32 height = 15;

    // The Agency associated with this ad. See agencies.txt file in the
    // technical documentation for a list of ids. If this ad has no associated
    // agency then the value NONE (agency_id: 1) should be used rather than
    // leaving this field unset.
    optional int64 agency_id = 16;

    message AdSlot {
      // The slot id from the BidRequest that the ad may appear in.
      required int32 id = 1;

      // The maximum CPM you want to be charged if you win the auction for this
      // ad slot, expressed in micros of your account currency. For example, to
      // bid a CPM of 1.29 USD, set max_cpm_micros = 1290000. Winning bids are
      // rounded up to billable units. For example, in USD, bids are rounded up
      // to the next multiple of 10,000 micros (one cent).
      required int64 max_cpm_micros = 2;

      // The minimum CPM you want to be charged if you win the auction for this
      // ad slot. This may represent a second price if you choose max_cpm as the
      // highest of several bids, or some form of reserve price if you wish to
      // override the reserve price set by the publisher. The bid must be less
      // than or equal to max_cpm_micros or it will be ignored. This field is
      // optional and does not need to be set.
      optional int64 min_cpm_micros = 3;

      // Billing id to attribute this impression to. The value must be in the
      // set of billing ids for this slot that were sent in the
      // BidRequest.AdSlot.matching_ad_data.billing_id. This must always be set
      // if the BidRequest has more than one
      // BidRequest.AdSlot.matching_ad_data.billing_id.
      optional int64 billing_id = 4;

      // The deal id that you want this bid to participate in. Leave unset
      // or set it to "1" if a deal is available but you want to
      // ignore the deal and participate in the open auction.
      optional int64 deal_id = 5 [default = 0];
    }
    repeated AdSlot adslot = 3;

    // The URLs to call when the impression is rendered.  This is supported for
    // all inventory types and all formats except for VAST video.
    repeated string impression_tracking_url = 19;

    // Link to ad preferences page. This is only suppported for native ads.
    // If present, a standard AdChoices icon is added to the native creative and
    // linked to this URL.
    optional string ad_choices_destination_url = 21;

    // These are deprecated. Please do not set.
    optional int64 DEPRECATED_creative_id = 8;
    optional string DEPRECATED_click_through_url = 2;
    optional string DEPRECATED_snippet_template = 12;
    message TemplateParameter {
      optional string parameter_value = 1;
      optional string blank_ad_parameter_value = 8;
      optional string buyer_creative_id = 2;
      optional string click_through_url = 3;
      optional int32 left = 4;
      optional int32 right = 5;
      optional int32 top = 6;
      optional int32 bottom = 7;
      optional int32 backup_index = 9;
    };
    repeated TemplateParameter DEPRECATED_template_parameter = 13;
  }
  repeated Ad ad = 2;

  // If is_test was set in the BidRequest, then you may return debug information
  // as plain text in this field. Please do not set this field under normal
  // conditions, or set it to values longer than 100 characters. You should only
  // use this field when asked to do so as part of troubleshooting particular
  // problems.
  optional string debug_string = 5;

  // Please set this to the processing time in milliseconds from when you
  // received the request to when you returned the response.
  optional int32 processing_time_ms = 4;

  // This is deprecated. Please do not set.
  optional int32 DEPRECATED_protocol_version = 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy