How to use the "break_dimensions" API

Q: The property “break_dimensions”: Dict[int, BreakDim] has this BreakDim, can you describe this data structure/format?

A: This detail was missed in the documentation which will be updated in the next release/
```
class BreakDim(BaseModel):
“”"
Structure used to store break time windows
“”"

          earliest: Optional[List[int]] = None
          latest: Optional[List[int]] = None
          duration: Optional[List[int]] = None
  ```

Thanks,