Class: Google::Apis::Adexchangebuyer2V2beta1::ServingRestriction
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ServingRestriction
- 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
Output only. A representation of the status of an ad in a specific context. A context here relates to where something ultimately serves (for example, a user or publisher geo, a platform, an HTTPS vs HTTP request, or the type of auction) .
Instance Attribute Summary collapse
-
#contexts ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::ServingContext>
The contexts for the restriction.
-
#disapproval ⇒ Google::Apis::Adexchangebuyer2V2beta1::Disapproval
Output only.
-
#disapproval_reasons ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::Disapproval>
Any disapprovals bound to this restriction.
-
#status ⇒ String
The status of the creative in this context (for example, it has been explicitly disapproved or is pending review).
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServingRestriction
constructor
A new instance of ServingRestriction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ServingRestriction
Returns a new instance of ServingRestriction.
3730 3731 3732 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contexts ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::ServingContext>
The contexts for the restriction.
Corresponds to the JSON property contexts
3710 3711 3712 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3710 def contexts @contexts end |
#disapproval ⇒ Google::Apis::Adexchangebuyer2V2beta1::Disapproval
Output only. The reason and details for a disapproval.
Corresponds to the JSON property disapproval
3715 3716 3717 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3715 def disapproval @disapproval end |
#disapproval_reasons ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::Disapproval>
Any disapprovals bound to this restriction. Only present if status=DISAPPROVED.
Can be used to filter the response of the creatives.list method. Deprecated;
please use disapproval field instead.
Corresponds to the JSON property disapprovalReasons
3722 3723 3724 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3722 def disapproval_reasons @disapproval_reasons end |
#status ⇒ String
The status of the creative in this context (for example, it has been
explicitly disapproved or is pending review).
Corresponds to the JSON property status
3728 3729 3730 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3728 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3735 3736 3737 3738 3739 3740 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 3735 def update!(**args) @contexts = args[:contexts] if args.key?(:contexts) @disapproval = args[:disapproval] if args.key?(:disapproval) @disapproval_reasons = args[:disapproval_reasons] if args.key?(:disapproval_reasons) @status = args[:status] if args.key?(:status) end |