Class: Google::Apis::Adexchangebuyer2V2beta1::ServingContext

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

Overview

The serving context for this restriction.

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

Returns a new instance of ServingContext



673
674
675
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 673

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

Instance Attribute Details

#allString

Matches all contexts. Corresponds to the JSON property all

Returns:

  • (String)


666
667
668
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 666

def all
  @all
end

#app_typeGoogle::Apis::Adexchangebuyer2V2beta1::AppContext

Corresponds to the JSON property appType



671
672
673
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 671

def app_type
  @app_type
end

#auction_typeGoogle::Apis::Adexchangebuyer2V2beta1::AuctionContext

Corresponds to the JSON property auctionType



661
662
663
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 661

def auction_type
  @auction_type
end

#locationGoogle::Apis::Adexchangebuyer2V2beta1::LocationContext

Corresponds to the JSON property location



656
657
658
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 656

def location
  @location
end

#platformGoogle::Apis::Adexchangebuyer2V2beta1::PlatformContext

Corresponds to the JSON property platform



651
652
653
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 651

def platform
  @platform
end

#security_typeGoogle::Apis::Adexchangebuyer2V2beta1::SecurityContext

Corresponds to the JSON property securityType



646
647
648
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 646

def security_type
  @security_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



678
679
680
681
682
683
684
685
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 678

def update!(**args)
  @security_type = args[:security_type] if args.key?(:security_type)
  @platform = args[:platform] if args.key?(:platform)
  @location = args[:location] if args.key?(:location)
  @auction_type = args[:auction_type] if args.key?(:auction_type)
  @all = args[:all] if args.key?(:all)
  @app_type = args[:app_type] if args.key?(:app_type)
end