class Google::Apis::DfareportingV3_3::ConversionError
The error code and description for a conversion that failed to insert or update.
Attributes
code[RW]
The error code. Corresponds to the JSON property `code` @return [String]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#conversionError”. Corresponds to the JSON property `kind` @return [String]
message[RW]
A description of the error. Corresponds to the JSON property `message` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 2447 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 2452 def update!(**args) @code = args[:code] if args.key?(:code) @kind = args[:kind] if args.key?(:kind) @message = args[:message] if args.key?(:message) end