Class: Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction
- Inherits:
-
Object
- Object
- Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction
- 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, DisapprovalReason
Instance Attribute Summary collapse
-
#contexts ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction::Context>
All known contexts/restrictions.
-
#disapproval_reasons ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction::DisapprovalReason>
The reasons for disapproval within this restriction, if any.
-
#reason ⇒ String
Why the creative is ineligible to serve in this context (e.g., 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
1053 1054 1055 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1053 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contexts ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction::Context>
All known contexts/restrictions.
Corresponds to the JSON property contexts
1036 1037 1038 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1036 def contexts @contexts end |
#disapproval_reasons ⇒ Array<Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction::DisapprovalReason>
The reasons for disapproval within this restriction, if any. Note that not all
disapproval reasons may be categorized, so it is possible for the creative to
have a status of DISAPPROVED or CONDITIONALLY_APPROVED with an empty list for
disapproval_reasons. In this case, please reach out to your TAM to help debug
the issue.
Corresponds to the JSON property disapprovalReasons
1045 1046 1047 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1045 def disapproval_reasons @disapproval_reasons end |
#reason ⇒ String
Why the creative is ineligible to serve in this context (e.g., it has been
explicitly disapproved or is pending review).
Corresponds to the JSON property reason
1051 1052 1053 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1051 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1058 1059 1060 1061 1062 |
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1058 def update!(**args) @contexts = args[:contexts] if args.key?(:contexts) @disapproval_reasons = args[:disapproval_reasons] if args.key?(:disapproval_reasons) @reason = args[:reason] if args.key?(:reason) end |