Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesOfflineConversionSummary

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_countFixnum

Output only. Total count of failed event. Corresponds to the JSON property failedCount

Returns:

  • (Fixnum)


31803
31804
31805
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31803

def failed_count
  @failed_count
end

#job_idFixnum

Output only. Dimension key for last N jobs. Corresponds to the JSON property jobId

Returns:

  • (Fixnum)


31808
31809
31810
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31808

def job_id
  @job_id
end

#pending_countFixnum

Output only. Total count of pending uploaded event. Corresponds to the JSON property pendingCount

Returns:

  • (Fixnum)


31813
31814
31815
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31813

def pending_count
  @pending_count
end

#successful_countFixnum

Output only. Total count of successful event. Corresponds to the JSON property successfulCount

Returns:

  • (Fixnum)


31818
31819
31820
# File 'lib/google/apis/searchads360_v23/classes.rb', line 31818

def successful_count
  @successful_count
end

#upload_dateString

Output only. Dimension key for last N days. Corresponds to the JSON property uploadDate

Returns:

  • (String)


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