Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesOfflineConversionSummary
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesOfflineConversionSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v23/classes.rb,
lib/google/apis/searchads360_v23/representations.rb,
lib/google/apis/searchads360_v23/representations.rb
Overview
Historical upload summary, grouped by upload date or job.
Instance Attribute Summary collapse
-
#failed_count ⇒ Fixnum
Output only.
-
#job_id ⇒ Fixnum
Output only.
-
#pending_count ⇒ Fixnum
Output only.
-
#successful_count ⇒ Fixnum
Output only.
-
#upload_date ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesOfflineConversionSummary
constructor
A new instance of GoogleAdsSearchads360V23ResourcesOfflineConversionSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesOfflineConversionSummary
Returns a new instance of GoogleAdsSearchads360V23ResourcesOfflineConversionSummary.
31927 31928 31929 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31927 def initialize(**args) update!(**args) end |
Instance Attribute Details
#failed_count ⇒ Fixnum
Output only. Total count of failed event.
Corresponds to the JSON property failedCount
31905 31906 31907 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31905 def failed_count @failed_count end |
#job_id ⇒ Fixnum
Output only. Dimension key for last N jobs.
Corresponds to the JSON property jobId
31910 31911 31912 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31910 def job_id @job_id end |
#pending_count ⇒ Fixnum
Output only. Total count of pending uploaded event.
Corresponds to the JSON property pendingCount
31915 31916 31917 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31915 def pending_count @pending_count end |
#successful_count ⇒ Fixnum
Output only. Total count of successful event.
Corresponds to the JSON property successfulCount
31920 31921 31922 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31920 def successful_count @successful_count end |
#upload_date ⇒ String
Output only. Dimension key for last N days.
Corresponds to the JSON property uploadDate
31925 31926 31927 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31925 def upload_date @upload_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31932 31933 31934 31935 31936 31937 31938 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31932 def update!(**args) @failed_count = args[:failed_count] if args.key?(:failed_count) @job_id = args[:job_id] if args.key?(:job_id) @pending_count = args[:pending_count] if args.key?(:pending_count) @successful_count = args[:successful_count] if args.key?(:successful_count) @upload_date = args[:upload_date] if args.key?(:upload_date) end |