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
Copy file name to clipboardExpand all lines: segment_public_api/models/definition.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ class Definition(BaseModel):
26
26
"""
27
27
Query language definition and type. # noqa: E501
28
28
"""
29
-
query: StrictStr=Field(..., description="The query language string defining the computed trait aggregation criteria. For guidance on using the query language, see the [Segment documentation site](https://segment.com/docs/api/public-api/query-language).")
30
-
type: StrictStr=Field(..., description="The underlying data type being aggregated for this computed trait. Possible values: users, accounts.")
29
+
query: StrictStr=Field(..., description="The query language string defining the audience segmentation criteria.")
30
+
type: StrictStr=Field(..., description="The underlying data type being segmented for this audience. Possible values: users, accounts.")
Copy file name to clipboardExpand all lines: segment_public_api/models/definition1.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ class Definition1(BaseModel):
26
26
"""
27
27
Query language definition and type. # noqa: E501
28
28
"""
29
-
query: StrictStr=Field(..., description="The query language string defining the audience segmentation criteria.")
30
-
type: StrictStr=Field(..., description="The underlying data type being segmented for this audience. Possible values: users, accounts.")
29
+
query: StrictStr=Field(..., description="The query language string defining the computed trait aggregation criteria. For guidance on using the query language, see the [Segment documentation site](https://segment.com/docs/api/public-api/query-language).")
30
+
type: StrictStr=Field(..., description="The underlying data type being aggregated for this computed trait. Possible values: users, accounts.")
0 commit comments