Class: Google::Apis::AdexchangebuyerV1_3::Creative::DisapprovalReason
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdexchangebuyerV1_3::Creative::DisapprovalReason
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer_v1_3/classes.rb,
 generated/google/apis/adexchangebuyer_v1_3/representations.rb,
 generated/google/apis/adexchangebuyer_v1_3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional details about the reason for disapproval. 
- 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The categorized reason for disapproval. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DisapprovalReason 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DisapprovalReason. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DisapprovalReason
Returns a new instance of DisapprovalReason
| 479 480 481 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 479 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#details ⇒ Array<String>
Additional details about the reason for disapproval.
Corresponds to the JSON property details
| 472 473 474 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 472 def details @details end | 
#reason ⇒ String
The categorized reason for disapproval.
Corresponds to the JSON property reason
| 477 478 479 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 477 def reason @reason end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 484 485 486 487 | # File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 484 def update!(**args) @details = args[:details] if args.key?(:details) @reason = args[:reason] if args.key?(:reason) end |