Skip to content

Commit fa647e0

Browse files
committed
Modify TermsOfService class
1 parent 0c31166 commit fa647e0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

cuenca/resources/terms_of_service.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from typing import ClassVar
33

44
from cuenca_validations.types import TermsOfService as TermsOfServiceEnum
5-
from cuenca_validations.types.general import SerializableHttpUrl
65

76
from .base import Queryable, Retrievable
87

@@ -11,8 +10,7 @@ class TermsOfService(Retrievable, Queryable):
1110
_resource: ClassVar = 'terms_of_service'
1211

1312
id: str
14-
is_active: bool
1513
created_at: dt.datetime
14+
deactivated_at: dt.datetime | None
1615
type: TermsOfServiceEnum
1716
version: str
18-
uri: SerializableHttpUrl

cuenca/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '2.1.6.dev1'
1+
__version__ = '2.1.6.dev2'
22
CLIENT_VERSION = __version__
33
API_VERSION = '2020-03-19'

0 commit comments

Comments
 (0)