Class: Google::Apis::RealtimebiddingV1::PolicyTopicEvidence
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::PolicyTopicEvidence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/realtimebidding_v1/classes.rb,
lib/google/apis/realtimebidding_v1/representations.rb,
lib/google/apis/realtimebidding_v1/representations.rb
Overview
Evidence associated with a policy topic entry.
Instance Attribute Summary collapse
-
#destination_not_crawlable ⇒ Google::Apis::RealtimebiddingV1::DestinationNotCrawlableEvidence
Evidence that the creative's destination URL was not crawlable by Google.
-
#destination_not_working ⇒ Google::Apis::RealtimebiddingV1::DestinationNotWorkingEvidence
Evidence of the creative's destination URL not functioning properly or having been incorrectly set up.
-
#destination_url ⇒ Google::Apis::RealtimebiddingV1::DestinationUrlEvidence
The full landing page URL of the destination.
-
#domain_call ⇒ Google::Apis::RealtimebiddingV1::DomainCallEvidence
Number of HTTP calls made by a creative, broken down by domain.
-
#download_size ⇒ Google::Apis::RealtimebiddingV1::DownloadSizeEvidence
Total download size and URL-level download size breakdown for resources in a creative.
-
#http_call ⇒ Google::Apis::RealtimebiddingV1::HttpCallEvidence
HTTP calls made by a creative that resulted in policy violations.
-
#http_cookie ⇒ Google::Apis::RealtimebiddingV1::HttpCookieEvidence
Evidence for HTTP cookie-related policy violations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PolicyTopicEvidence
constructor
A new instance of PolicyTopicEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PolicyTopicEvidence
Returns a new instance of PolicyTopicEvidence.
1575 1576 1577 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1575 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination_not_crawlable ⇒ Google::Apis::RealtimebiddingV1::DestinationNotCrawlableEvidence
Evidence that the creative's destination URL was not crawlable by Google.
Corresponds to the JSON property destinationNotCrawlable
1541 1542 1543 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1541 def destination_not_crawlable @destination_not_crawlable end |
#destination_not_working ⇒ Google::Apis::RealtimebiddingV1::DestinationNotWorkingEvidence
Evidence of the creative's destination URL not functioning properly or having
been incorrectly set up.
Corresponds to the JSON property destinationNotWorking
1547 1548 1549 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1547 def destination_not_working @destination_not_working end |
#destination_url ⇒ Google::Apis::RealtimebiddingV1::DestinationUrlEvidence
The full landing page URL of the destination.
Corresponds to the JSON property destinationUrl
1552 1553 1554 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1552 def destination_url @destination_url end |
#domain_call ⇒ Google::Apis::RealtimebiddingV1::DomainCallEvidence
Number of HTTP calls made by a creative, broken down by domain.
Corresponds to the JSON property domainCall
1557 1558 1559 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1557 def domain_call @domain_call end |
#download_size ⇒ Google::Apis::RealtimebiddingV1::DownloadSizeEvidence
Total download size and URL-level download size breakdown for resources in a
creative.
Corresponds to the JSON property downloadSize
1563 1564 1565 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1563 def download_size @download_size end |
#http_call ⇒ Google::Apis::RealtimebiddingV1::HttpCallEvidence
HTTP calls made by a creative that resulted in policy violations.
Corresponds to the JSON property httpCall
1568 1569 1570 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1568 def http_call @http_call end |
#http_cookie ⇒ Google::Apis::RealtimebiddingV1::HttpCookieEvidence
Evidence for HTTP cookie-related policy violations.
Corresponds to the JSON property httpCookie
1573 1574 1575 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1573 def @http_cookie end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1580 1581 1582 1583 1584 1585 1586 1587 1588 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 1580 def update!(**args) @destination_not_crawlable = args[:destination_not_crawlable] if args.key?(:destination_not_crawlable) @destination_not_working = args[:destination_not_working] if args.key?(:destination_not_working) @destination_url = args[:destination_url] if args.key?(:destination_url) @domain_call = args[:domain_call] if args.key?(:domain_call) @download_size = args[:download_size] if args.key?(:download_size) @http_call = args[:http_call] if args.key?(:http_call) @http_cookie = args[:http_cookie] if args.key?(:http_cookie) end |