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.
31825 31826 31827 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31825 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
31803 31804 31805 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31803 def failed_count @failed_count end |
#job_id ⇒ Fixnum
Output only. Dimension key for last N jobs.
Corresponds to the JSON property jobId
31808 31809 31810 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31808 def job_id @job_id end |
#pending_count ⇒ Fixnum
Output only. Total count of pending uploaded event.
Corresponds to the JSON property pendingCount
31813 31814 31815 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31813 def pending_count @pending_count end |
#successful_count ⇒ Fixnum
Output only. Total count of successful event.
Corresponds to the JSON property successfulCount
31818 31819 31820 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31818 def successful_count @successful_count end |
#upload_date ⇒ String
Output only. Dimension key for last N days.
Corresponds to the JSON property uploadDate
31823 31824 31825 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31823 def upload_date @upload_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31830 31831 31832 31833 31834 31835 31836 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31830 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 |