class Google::Apis::DfareportingV3_3::ConversionStatus
The original conversion that was inserted or updated and whether there were any errors.
Attributes
conversion[RW]
A Conversion
represents when a user successfully performs a desired action after seeing an ad. Corresponds to the JSON property `conversion` @return [Google::Apis::DfareportingV3_3::Conversion]
errors[RW]
A list of errors related to this conversion. Corresponds to the JSON property `errors` @return [Array<Google::Apis::DfareportingV3_3::ConversionError>]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#conversionStatus”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 2481 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 2486 def update!(**args) @conversion = args[:conversion] if args.key?(:conversion) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) end