Vous ne pouvez pas sélectionner plus de 25 sujets
			Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678910111213141516171819202122 | 
							- from .segments import Segment
 - from .types import SegmentType
 - 
 - 
 - class SegmentGroup(Segment):
 -     value_type: SegmentType = SegmentType.GROUP
 -     value: list[Segment]
 - 
 -     @property
 -     def text(self):
 -         return "".join([segment.text for segment in self.value])
 - 
 -     @property
 -     def log(self):
 -         return "".join([segment.log for segment in self.value])
 - 
 -     @property
 -     def markdown(self):
 -         return "".join([segment.markdown for segment in self.value])
 - 
 -     def to_object(self):
 -         return [segment.to_object() for segment in self.value]
 
 
  |