mirror of
				https://github.com/Eledio/superfaktura-client.git
				synced 2025-10-31 16:11:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			646 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			646 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """
 | |
| Data Format Enumeration.
 | |
| 
 | |
| This module provides an enumeration of data formats that can be used in the SuperFaktura API.
 | |
| 
 | |
| Classes:
 | |
|     - DataFormat: Enumeration of data formats.
 | |
| 
 | |
| Usage:
 | |
|     from superfaktura.enumerations.data_format import DataFormat
 | |
|     data_format = DataFormat.JSON
 | |
| """
 | |
| 
 | |
| import enum
 | |
| 
 | |
| 
 | |
| class DataFormat(enum.Enum):
 | |
|     """
 | |
|     Data Format Enumeration.
 | |
| 
 | |
|     This enumeration represents the different data formats that can be used in the SuperFaktura API.
 | |
| 
 | |
|     Values:
 | |
|         - JSON: JSON format
 | |
|         - PDF: PDF format
 | |
| 
 | |
|     Usage:
 | |
|         data_format = DataFormat.JSON
 | |
|     """
 | |
| 
 | |
|     JSON = enum.auto()
 | |
|     PDF = enum.auto()
 |