13 lines
		
	
	
		
			235 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			235 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import List
 | |
| 
 | |
| from pydantic import BaseModel, ConfigDict
 | |
| 
 | |
| 
 | |
| 
 | |
| class SelectGet(BaseModel):
 | |
|     """The response from the `SelectGet` command."""
 | |
| 
 | |
|     entity_ids: List[str]
 | |
| 
 | |
|     model_config = ConfigDict(protected_namespaces=())
 |