Class: Google::Apis::RealtimebiddingV1::DestinationNotWorkingEvidence

Inherits:
Object
  • Object
show all
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 of the creative's destination URL not functioning properly or having been incorrectly set up.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DestinationNotWorkingEvidence

Returns a new instance of DestinationNotWorkingEvidence.



941
942
943
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 941

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dns_errorString

DNS lookup errors. Corresponds to the JSON property dnsError

Returns:

  • (String)


903
904
905
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 903

def dns_error
  @dns_error
end

#expanded_urlString

The full non-working URL. Corresponds to the JSON property expandedUrl

Returns:

  • (String)


908
909
910
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 908

def expanded_url
  @expanded_url
end

#http_errorFixnum

HTTP error code (for example, 404 or 5xx) Corresponds to the JSON property httpError

Returns:

  • (Fixnum)


913
914
915
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 913

def http_error
  @http_error
end

#invalid_pageString

Page was crawled successfully, but was detected as either a page with no content or an error page. Corresponds to the JSON property invalidPage

Returns:

  • (String)


919
920
921
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 919

def invalid_page
  @invalid_page
end

#last_check_timeString

Approximate time when the ad destination was last checked. Corresponds to the JSON property lastCheckTime

Returns:

  • (String)


924
925
926
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 924

def last_check_time
  @last_check_time
end

#platformString

Platform of the non-working URL. Corresponds to the JSON property platform

Returns:

  • (String)


929
930
931
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 929

def platform
  @platform
end

#redirection_errorString

HTTP redirect chain error. Corresponds to the JSON property redirectionError

Returns:

  • (String)


934
935
936
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 934

def redirection_error
  @redirection_error
end

#url_rejectedString

Rejected because of malformed URLs or invalid requests. Corresponds to the JSON property urlRejected

Returns:

  • (String)


939
940
941
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 939

def url_rejected
  @url_rejected
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



946
947
948
949
950
951
952
953
954
955
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 946

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