@@ -28,16 +28,16 @@ class AudienceSchedule(BaseModel):
2828 Defines an Audience Schedule. # noqa: E501
2929 """
3030id :StrictStr = Field (...,description = "Distinct identifier for the schedule." )
31- strategy :StrictStr = Field (...,description = "Strategy of the audience schedule (manual, periodic or specific days)." )
31+ strategy :StrictStr = Field (...,description = "Strategy of the audience schedule (periodic or specific days)." )
3232config :Optional [Config ]= None
3333next_execution :Optional [StrictStr ]= Field (None ,alias = "nextExecution" ,description = "The next scheduled execution time (RFC3339)." )
3434__properties = ["id" ,"strategy" ,"config" ,"nextExecution" ]
3535
3636@validator ('strategy' )
3737def strategy_validate_enum (cls ,value ):
3838"""Validates the enum"""
39- if value not in ('MANUAL' , ' PERIODIC' ,'SPECIFIC_DAYS' ):
40- raise ValueError ("must be one of enum values ('MANUAL', ' PERIODIC', 'SPECIFIC_DAYS')" )
39+ if value not in ('PERIODIC' ,'SPECIFIC_DAYS' ):
40+ raise ValueError ("must be one of enum values ('PERIODIC', 'SPECIFIC_DAYS')" )
4141return value
4242
4343class Config :