| 22 | |
| 23 | @dataclass |
| 24 | class FlagChangeSet: |
| 25 | author: AuthorData |
| 26 | enabled: bool |
| 27 | feature_state_value: str |
| 28 | type_: FeatureValueType |
| 29 | |
| 30 | segment_id: int | None = None |
| 31 | segment_priority: int | None = None |
| 32 | multivariate_values: list[MultivariateValueChangeSet] | None = None |
| 33 | |
| 34 | |
| 35 | @dataclass |
no outgoing calls
searching dependent graphs…