Class: Google::Apis::RealtimebiddingV1::DestinationNotWorkingEvidence
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::DestinationNotWorkingEvidence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/realtimebidding_v1/classes.rb,
generated/google/apis/realtimebidding_v1/representations.rb,
generated/google/apis/realtimebidding_v1/representations.rb
Overview
Evidence of the creative's destination URL not functioning properly or having been incorrectly set up.
Instance Attribute Summary collapse
-
#dns_error ⇒ String
DNS lookup errors.
-
#expanded_url ⇒ String
The full non-working URL.
-
#http_error ⇒ Fixnum
HTTP error code (e.g. 404 or 5xx) Corresponds to the JSON property
httpError
. -
#invalid_page ⇒ String
Page was crawled successfully, but was detected as either a page with no content or an error page.
-
#last_check_time ⇒ String
Approximate time when the ad destination was last checked.
-
#platform ⇒ String
Platform of the non-working URL.
-
#redirection_error ⇒ String
HTTP redirect chain error.
-
#url_rejected ⇒ String
Rejected because of malformed URLs or invalid requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DestinationNotWorkingEvidence
constructor
A new instance of DestinationNotWorkingEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DestinationNotWorkingEvidence
Returns a new instance of DestinationNotWorkingEvidence.
638 639 640 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 638 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_error ⇒ String
DNS lookup errors.
Corresponds to the JSON property dnsError
600 601 602 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 600 def dns_error @dns_error end |
#expanded_url ⇒ String
The full non-working URL.
Corresponds to the JSON property expandedUrl
605 606 607 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 605 def @expanded_url end |
#http_error ⇒ Fixnum
HTTP error code (e.g. 404 or 5xx)
Corresponds to the JSON property httpError
610 611 612 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 610 def http_error @http_error end |
#invalid_page ⇒ String
Page was crawled successfully, but was detected as either a page with no
content or an error page.
Corresponds to the JSON property invalidPage
616 617 618 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 616 def invalid_page @invalid_page end |
#last_check_time ⇒ String
Approximate time when the ad destination was last checked.
Corresponds to the JSON property lastCheckTime
621 622 623 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 621 def last_check_time @last_check_time end |
#platform ⇒ String
Platform of the non-working URL.
Corresponds to the JSON property platform
626 627 628 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 626 def platform @platform end |
#redirection_error ⇒ String
HTTP redirect chain error.
Corresponds to the JSON property redirectionError
631 632 633 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 631 def redirection_error @redirection_error end |
#url_rejected ⇒ String
Rejected because of malformed URLs or invalid requests.
Corresponds to the JSON property urlRejected
636 637 638 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 636 def url_rejected @url_rejected end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
643 644 645 646 647 648 649 650 651 652 |
# File 'generated/google/apis/realtimebidding_v1/classes.rb', line 643 def update!(**args) @dns_error = args[:dns_error] if args.key?(:dns_error) @expanded_url = args[:expanded_url] if args.key?(:expanded_url) @http_error = args[:http_error] if args.key?(:http_error) @invalid_page = args[:invalid_page] if args.key?(:invalid_page) @last_check_time = args[:last_check_time] if args.key?(:last_check_time) @platform = args[:platform] if args.key?(:platform) @redirection_error = args[:redirection_error] if args.key?(:redirection_error) @url_rejected = args[:url_rejected] if args.key?(:url_rejected) end |