Class: Google::Apis::ContentV2sandbox::OrdersCustomBatchRequestEntryCancel
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2sandbox::OrdersCustomBatchRequestEntryCancel
 
- Defined in:
- generated/google/apis/content_v2sandbox/classes.rb,
 generated/google/apis/content_v2sandbox/representations.rb,
 generated/google/apis/content_v2sandbox/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The reason for the cancellation. 
- 
  
    
      #reason_text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The explanation of the reason. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrdersCustomBatchRequestEntryCancel 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OrdersCustomBatchRequestEntryCancel. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryCancel
Returns a new instance of OrdersCustomBatchRequestEntryCancel
| 1579 1580 1581 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 1579 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#reason ⇒ String
The reason for the cancellation.
Corresponds to the JSON property reason
| 1572 1573 1574 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 1572 def reason @reason end | 
#reason_text ⇒ String
The explanation of the reason.
Corresponds to the JSON property reasonText
| 1577 1578 1579 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 1577 def reason_text @reason_text end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1584 1585 1586 1587 | # File 'generated/google/apis/content_v2sandbox/classes.rb', line 1584 def update!(**args) @reason = args[:reason] if args.key?(:reason) @reason_text = args[:reason_text] if args.key?(:reason_text) end |