Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7987e03

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@5615452a.
1 parente5fe795 commit7987e03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎segment_public_api/models/audience_schedule.py‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ class AudienceSchedule(BaseModel):
2828
Defines an Audience Schedule. # noqa: E501
2929
"""
3030
id: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).")
3232
config:Optional[Config]=None
3333
next_execution:Optional[StrictStr]=Field(None,alias="nextExecution",description="The next scheduled execution time (RFC3339).")
3434
__properties= ["id","strategy","config","nextExecution"]
3535

3636
@validator('strategy')
3737
defstrategy_validate_enum(cls,value):
3838
"""Validates the enum"""
39-
ifvaluenotin ('MANUAL','PERIODIC','SPECIFIC_DAYS'):
40-
raiseValueError("must be one of enum values ('MANUAL', 'PERIODIC', 'SPECIFIC_DAYS')")
39+
ifvaluenotin ('PERIODIC','SPECIFIC_DAYS'):
40+
raiseValueError("must be one of enum values ('PERIODIC', 'SPECIFIC_DAYS')")
4141
returnvalue
4242

4343
classConfig:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp