Class: Google::Apis::DfareportingV4::ConversionsBatchInsertResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::ConversionsBatchInsertResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Insert Conversions Response.
Instance Attribute Summary collapse
-
#has_failures ⇒ Boolean
(also: #has_failures?)
Indicates that some or all conversions failed to insert.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#status ⇒ Array<Google::Apis::DfareportingV4::ConversionStatus>
The insert status of each conversion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConversionsBatchInsertResponse
constructor
A new instance of ConversionsBatchInsertResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConversionsBatchInsertResponse
Returns a new instance of ConversionsBatchInsertResponse.
3064 3065 3066 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3064 def initialize(**args) update!(**args) end |
Instance Attribute Details
#has_failures ⇒ Boolean Also known as: has_failures?
Indicates that some or all conversions failed to insert.
Corresponds to the JSON property hasFailures
3049 3050 3051 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3049 def has_failures @has_failures end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionsBatchInsertResponse".
Corresponds to the JSON property kind
3056 3057 3058 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3056 def kind @kind end |
#status ⇒ Array<Google::Apis::DfareportingV4::ConversionStatus>
The insert status of each conversion. Statuses are returned in the same order
that conversions are inserted.
Corresponds to the JSON property status
3062 3063 3064 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3062 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3069 3070 3071 3072 3073 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3069 def update!(**args) @has_failures = args[:has_failures] if args.key?(:has_failures) @kind = args[:kind] if args.key?(:kind) @status = args[:status] if args.key?(:status) end |