Class: Google::Apis::AppengineV1beta::ListDomainMappingsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1beta::ListDomainMappingsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta/classes.rb,
 generated/google/apis/appengine_v1beta/representations.rb,
 generated/google/apis/appengine_v1beta/representations.rb
Overview
Response message for DomainMappings.ListDomainMappings.
Instance Attribute Summary collapse
- 
  
    
      #domain_mappings  ⇒ Array<Google::Apis::AppengineV1beta::DomainMapping> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The domain mappings for the application. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Continuation token for fetching the next page of results. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDomainMappingsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListDomainMappingsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDomainMappingsResponse
Returns a new instance of ListDomainMappingsResponse
| 1388 1389 1390 | # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1388 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#domain_mappings ⇒ Array<Google::Apis::AppengineV1beta::DomainMapping>
The domain mappings for the application.
Corresponds to the JSON property domainMappings
| 1381 1382 1383 | # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1381 def domain_mappings @domain_mappings end | 
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
| 1386 1387 1388 | # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1386 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1393 1394 1395 1396 | # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1393 def update!(**args) @domain_mappings = args[:domain_mappings] if args.key?(:domain_mappings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |