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

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

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) ⇒ Context

Returns a new instance of Context.



726
727
728
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 726

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

Instance Attribute Details

#auction_typeArray<String>

Only set when contextType=AUCTION_TYPE. Represents the auction types this correction applies to. Corresponds to the JSON property auctionType

Returns:

  • (Array<String>)


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

def auction_type
  @auction_type
end

#context_typeString

The type of context (e.g., location, platform, auction type, SSL-ness). Corresponds to the JSON property contextType

Returns:

  • (String)


712
713
714
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 712

def context_type
  @context_type
end

#geo_criteria_idArray<Fixnum>

Only set when contextType=LOCATION. Represents the geo criterias this correction applies to. Corresponds to the JSON property geoCriteriaId

Returns:

  • (Array<Fixnum>)


718
719
720
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 718

def geo_criteria_id
  @geo_criteria_id
end

#platformArray<String>

Only set when contextType=PLATFORM. Represents the platforms this correction applies to. Corresponds to the JSON property platform

Returns:

  • (Array<String>)


724
725
726
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 724

def platform
  @platform
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



731
732
733
734
735
736
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 731

def update!(**args)
  @auction_type = args[:auction_type] if args.key?(:auction_type)
  @context_type = args[:context_type] if args.key?(:context_type)
  @geo_criteria_id = args[:geo_criteria_id] if args.key?(:geo_criteria_id)
  @platform = args[:platform] if args.key?(:platform)
end