[docs]@dataclasses.dataclassclassSlice:""" Configuration of a python `slice` built-in. Required because `slice` cannot be initialized directly by dacite. Parameters: start: Start index of the slice. stop: Stop index of the slice. step: Step of the slice. """start:Optional[int]=Nonestop:Optional[int]=Nonestep:Optional[int]=None@propertydefslice(self)->slice:returnslice(self.start,self.stop,self.step)