Class: Google::Apis::AdexchangebuyerV1_4::Creative::ServingRestriction

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, DisapprovalReason

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServingRestriction

Returns a new instance of ServingRestriction.



1092
1093
1094
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1092

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

Instance Attribute Details

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

All known contexts/restrictions. Corresponds to the JSON property contexts



1075
1076
1077
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1075

def contexts
  @contexts
end

#disapproval_reasonsArray<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



1084
1085
1086
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1084

def disapproval_reasons
  @disapproval_reasons
end

#reasonString

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

Returns:

  • (String)


1090
1091
1092
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1090

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1097
1098
1099
1100
1101
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1097

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