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: src/intersect_sdk/core_definitions.py
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
"""Core enumerations and structures used throughout INTERSECT, for both client and service."""
2
2
3
3
fromenumimportEnum
4
-
fromtypingimportAnnotated
4
+
fromtypingimportAnnotated, Literal
5
5
6
6
frompydanticimportField
7
7
@@ -45,3 +45,6 @@ class IntersectDataHandler(Enum):
45
45
46
46
- If your Content-Type value is ANYTHING ELSE, you MUST mark it as "bytes" . In this instance, INTERSECT will not base64-encode or base64-decode the value.
47
47
"""
48
+
49
+
IntersectEncryptionScheme=Literal['NONE', 'RSA']
50
+
"""Supported encryption schemes throughout INTERSECT. 'NONE' implies no encryption scheme."""
0 commit comments