Class: Google::Apis::AdexchangebuyerV1_4::Creative::Correction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer_v1_4/classes.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb

Defined Under Namespace

Classes: Context

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Correction

Returns a new instance of Correction



700
701
702
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 700

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#contextsArray<Google::Apis::AdexchangebuyerV1_4::Creative::Correction::Context>

All known serving contexts containing serving status information. Corresponds to the JSON property contexts



688
689
690
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 688

def contexts
  @contexts
end

#detailsArray<String>

Additional details about the correction. Corresponds to the JSON property details

Returns:

  • (Array<String>)


693
694
695
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 693

def details
  @details
end

#reasonString

The type of correction that was applied to the creative. Corresponds to the JSON property reason

Returns:

  • (String)


698
699
700
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 698

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



705
706
707
708
709
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 705

def update!(**args)
  @contexts = args[:contexts] if args.key?(:contexts)
  @details = args[:details] if args.key?(:details)
  @reason = args[:reason] if args.key?(:reason)
end