You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
include_historical_data: Optional[StrictBool] =Field(None, alias="includeHistoricalData", description="Determines whether data prior to the audience being created is included when determining audience membership. Note that including historical data may be needed in order to properly handle the definition specified. In these cases, Segment will automatically handle including historical data and the response will return the includeHistoricalData parameter as true.")
30
30
include_anonymous_users: Optional[StrictBool] =Field(None, alias="includeAnonymousUsers", description="Determines whether anonymous users should be included when determining audience membership.")
filter_by_external_ids: Optional[conlist(StrictStr)] =Field(None, alias="filterByExternalIds", description="The set of profile external identifiers being used to determine audience membership. Profiles will only be considered for audience membership if the profile has at least one external id whose key matches a value in this set.")
32
+
backfill_event_data_days: Optional[Union[StrictFloat, StrictInt]] =Field(None, alias="backfillEventDataDays", description="If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.")
Copy file name to clipboardExpand all lines: segment_public_api/models/audience_options_with_lookback.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,10 @@ class AudienceOptionsWithLookback(BaseModel):
27
27
AudienceOptionsWithLookback
28
28
"""
29
29
filter_by_external_ids: conlist(StrictStr) =Field(..., alias="filterByExternalIds", description="The set of profile external identifiers being used to determine audience membership. Profiles will only be considered for audience membership if the profile has at least one external id whose key matches a value in this set.")
30
-
backfill_event_data_days: Optional[Union[StrictFloat, StrictInt]] =Field(None, alias="backfillEventDataDays", description="If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.")
31
30
include_historical_data: Optional[StrictBool] =Field(None, alias="includeHistoricalData", description="Determines whether data prior to the audience being created is included when determining audience membership. Note that including historical data may be needed in order to properly handle the definition specified. In these cases, Segment will automatically handle including historical data and the response will return the includeHistoricalData parameter as true.")
32
31
include_anonymous_users: Optional[StrictBool] =Field(None, alias="includeAnonymousUsers", description="Determines whether anonymous users should be included when determining audience membership.")
backfill_event_data_days: Optional[Union[StrictFloat, StrictInt]] =Field(None, alias="backfillEventDataDays", description="If specified, the value of this field indicates the number of days, specified from the date the audience was created, that event data will be included from when determining audience membership. If unspecified, defer to the value of `includeHistoricalData` to determine whether historical data is either entirely included or entirely excluded when determining audience membership.")
0 commit comments