We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0da4d commit 3a91fb6Copy full SHA for 3a91fb6
cuenca/resources/terms_of_services.py
@@ -0,0 +1,19 @@
1
+import datetime as dt
2
+from typing import ClassVar
3
+
4
+from cuenca_validations.types.general import SerializableHttpUrl
5
6
+from .base import Creatable, Queryable, Retrievable
7
8
9
+class TermsOfService(Creatable, Retrievable, Queryable):
10
+ _resource: ClassVar = 'terms_of_services'
11
12
+ id: str
13
+ created_at: dt.datetime
14
+ user_id: str
15
+ tos_id: str
16
+ ip: str
17
+ location: str
18
+ hash: str
19
+ url: SerializableHttpUrl
0 commit comments