mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			444 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			444 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package huaweidns
 | 
						|
 | 
						|
type ZonesResponse struct {
 | 
						|
	Links struct{} `json:"links"`
 | 
						|
	Zones []struct {
 | 
						|
		Id        string `json:"id"`
 | 
						|
		Name      string `json:"name"`
 | 
						|
		ZoneType  string `json:"zone_type"`
 | 
						|
		Status    string `json:"status"`
 | 
						|
		RecordNum int    `json:"record_num"`
 | 
						|
	} `json:"zones"`
 | 
						|
	Metadata struct {
 | 
						|
		TotalCount int `json:"total_count"`
 | 
						|
	} `json:"metadata"`
 | 
						|
}
 |