* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import Optional
 | 
						|
 | 
						|
from pydantic import BaseModel, ConfigDict
 | 
						|
 | 
						|
 | 
						|
 | 
						|
class Error(BaseModel):
 | 
						|
    """Error information from a response."""
 | 
						|
 | 
						|
    error_code: Optional[str] = None
 | 
						|
 | 
						|
    message: str
 | 
						|
 | 
						|
    request_id: str
 | 
						|
 | 
						|
    model_config = ConfigDict(protected_namespaces=())
 |