@@ -57,6 +57,7 @@ def submit(
5757 meta_type : Literal ["profile" , "message" , "post" , "comment" , "event" , "product" , "review" , "other" ]
5858 | Omit = omit ,
5959 policies : Iterable [content_submit_params .Policy ] | Omit = omit ,
60+ timestamp : float | Omit = omit ,
6061 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6162 # The extra values given here take precedence over values defined on the client or passed to this method.
6263 extra_headers : Headers | None = None ,
@@ -85,6 +86,9 @@ def submit(
8586
8687 policies: (Enterprise) override the channel policies for this moderation request only.
8788
89+ timestamp: Unix timestamp (in milliseconds) of when the content was created. Use if content
90+ is not submitted in real-time.
91+
8892 extra_headers: Send extra headers
8993
9094 extra_query: Add additional query parameters to the request
@@ -106,6 +110,7 @@ def submit(
106110 "metadata" : metadata ,
107111 "meta_type" : meta_type ,
108112 "policies" : policies ,
113+ "timestamp" : timestamp ,
109114 },
110115 content_submit_params .ContentSubmitParams ,
111116 ),
@@ -149,6 +154,7 @@ async def submit(
149154 meta_type : Literal ["profile" , "message" , "post" , "comment" , "event" , "product" , "review" , "other" ]
150155 | Omit = omit ,
151156 policies : Iterable [content_submit_params .Policy ] | Omit = omit ,
157+ timestamp : float | Omit = omit ,
152158 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
153159 # The extra values given here take precedence over values defined on the client or passed to this method.
154160 extra_headers : Headers | None = None ,
@@ -177,6 +183,9 @@ async def submit(
177183
178184 policies: (Enterprise) override the channel policies for this moderation request only.
179185
186+ timestamp: Unix timestamp (in milliseconds) of when the content was created. Use if content
187+ is not submitted in real-time.
188+
180189 extra_headers: Send extra headers
181190
182191 extra_query: Add additional query parameters to the request
@@ -198,6 +207,7 @@ async def submit(
198207 "metadata" : metadata ,
199208 "meta_type" : meta_type ,
200209 "policies" : policies ,
210+ "timestamp" : timestamp ,
201211 },
202212 content_submit_params .ContentSubmitParams ,
203213 ),
0 commit comments