Class: Google::Apis::RealtimebiddingV1::DownloadSizeEvidence
- Inherits:
-
Object
- Object
- Google::Apis::RealtimebiddingV1::DownloadSizeEvidence
- 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
Total download size and URL-level download size breakdown for resources in a creative.
Instance Attribute Summary collapse
-
#top_url_download_size_breakdowns ⇒ Array<Google::Apis::RealtimebiddingV1::UrlDownloadSize>
Download size broken down by URLs with the top download size.
-
#total_download_size_kb ⇒ Fixnum
Total download size (in kilobytes) for all the resources in the creative.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DownloadSizeEvidence
constructor
A new instance of DownloadSizeEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DownloadSizeEvidence
Returns a new instance of DownloadSizeEvidence.
935 936 937 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 935 def initialize(**args) update!(**args) end |
Instance Attribute Details
#top_url_download_size_breakdowns ⇒ Array<Google::Apis::RealtimebiddingV1::UrlDownloadSize>
Download size broken down by URLs with the top download size.
Corresponds to the JSON property topUrlDownloadSizeBreakdowns
928 929 930 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 928 def top_url_download_size_breakdowns @top_url_download_size_breakdowns end |
#total_download_size_kb ⇒ Fixnum
Total download size (in kilobytes) for all the resources in the creative.
Corresponds to the JSON property totalDownloadSizeKb
933 934 935 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 933 def total_download_size_kb @total_download_size_kb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
940 941 942 943 |
# File 'lib/google/apis/realtimebidding_v1/classes.rb', line 940 def update!(**args) @top_url_download_size_breakdowns = args[:top_url_download_size_breakdowns] if args.key?(:top_url_download_size_breakdowns) @total_download_size_kb = args[:total_download_size_kb] if args.key?(:total_download_size_kb) end |