Class: Google::Apis::ContentV2::OrdersGetTestOrderTemplateResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::OrdersGetTestOrderTemplateResponse
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #template  ⇒ Google::Apis::ContentV2::TestOrder 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The requested test order template. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrdersGetTestOrderTemplateResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OrdersGetTestOrderTemplateResponse. 
- 
  
    
      #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) ⇒ OrdersGetTestOrderTemplateResponse
Returns a new instance of OrdersGetTestOrderTemplateResponse
| 5219 5220 5221 | # File 'generated/google/apis/content_v2/classes.rb', line 5219 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
ordersGetTestOrderTemplateResponse".
Corresponds to the JSON property kind
| 5212 5213 5214 | # File 'generated/google/apis/content_v2/classes.rb', line 5212 def kind @kind end | 
#template ⇒ Google::Apis::ContentV2::TestOrder
The requested test order template.
Corresponds to the JSON property template
| 5217 5218 5219 | # File 'generated/google/apis/content_v2/classes.rb', line 5217 def template @template end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 5224 5225 5226 5227 | # File 'generated/google/apis/content_v2/classes.rb', line 5224 def update!(**args) @kind = args[:kind] if args.key?(:kind) @template = args[:template] if args.key?(:template) end |