2525class AnyType (core .ModelBase ):
2626 """AnyType"""
2727
28- type : typing .Literal ["any" ] = "any"
28+ type : typing .Literal ["any" ] = "any" # pyright: ignore[reportInvalidTypeForm]
2929
3030
3131class AttachmentType (core .ModelBase ):
3232 """AttachmentType"""
3333
34- type : typing .Literal ["attachment" ] = "attachment"
34+ type : typing .Literal ["attachment" ] = "attachment" # pyright: ignore[reportInvalidTypeForm]
3535
3636
3737Attribution = str
@@ -41,28 +41,28 @@ class AttachmentType(core.ModelBase):
4141class BinaryType (core .ModelBase ):
4242 """BinaryType"""
4343
44- type : typing .Literal ["binary" ] = "binary"
44+ type : typing .Literal ["binary" ] = "binary" # pyright: ignore[reportInvalidTypeForm]
4545
4646
4747class BooleanType (core .ModelBase ):
4848 """BooleanType"""
4949
50- type : typing .Literal ["boolean" ] = "boolean"
50+ type : typing .Literal ["boolean" ] = "boolean" # pyright: ignore[reportInvalidTypeForm]
5151
5252
5353class ByteType (core .ModelBase ):
5454 """ByteType"""
5555
56- type : typing .Literal ["byte" ] = "byte"
56+ type : typing .Literal ["byte" ] = "byte" # pyright: ignore[reportInvalidTypeForm]
5757
5858
5959class CipherTextType (core .ModelBase ):
6060 """CipherTextType"""
6161
62- default_cipher_channel : typing .Optional [str ] = pydantic .Field (alias = str ("defaultCipherChannel" ), default = None ) # type: ignore[literal-required]
62+ default_cipher_channel : typing .Optional [str ] = pydantic .Field (alias = str ("defaultCipherChannel" ), default = None ) # type: ignore[literal-required] # pyright: ignore[reportInvalidTypeForm]
6363 """An optional Cipher Channel RID which can be used for encryption updates to empty values."""
6464
65- type : typing .Literal ["cipherText" ] = "cipherText"
65+ type : typing .Literal ["cipherText" ] = "cipherText" # pyright: ignore[reportInvalidTypeForm]
6666
6767
6868ContentLength = core .Long
@@ -76,19 +76,19 @@ class CipherTextType(core.ModelBase):
7676class DateType (core .ModelBase ):
7777 """DateType"""
7878
79- type : typing .Literal ["date" ] = "date"
79+ type : typing .Literal ["date" ] = "date" # pyright: ignore[reportInvalidTypeForm]
8080
8181
8282class DecimalType (core .ModelBase ):
8383 """DecimalType"""
8484
85- precision : typing .Optional [int ] = None
85+ precision : typing .Optional [int ] = None # pyright: ignore[reportInvalidTypeForm]
8686 """The total number of digits of the Decimal type. The maximum value is 38."""
8787
88- scale : typing .Optional [int ] = None
88+ scale : typing .Optional [int ] = None # pyright: ignore[reportInvalidTypeForm]
8989 """The number of digits to the right of the decimal point. The maximum value is 38."""
9090
91- type : typing .Literal ["decimal" ] = "decimal"
91+ type : typing .Literal ["decimal" ] = "decimal" # pyright: ignore[reportInvalidTypeForm]
9292
9393
9494DisplayName = str
@@ -112,7 +112,7 @@ class DecimalType(core.ModelBase):
112112class DoubleType (core .ModelBase ):
113113 """DoubleType"""
114114
115- type : typing .Literal ["double" ] = "double"
115+ type : typing .Literal ["double" ] = "double" # pyright: ignore[reportInvalidTypeForm]
116116
117117
118118FilePath = str
@@ -129,7 +129,7 @@ class DoubleType(core.ModelBase):
129129class FloatType (core .ModelBase ):
130130 """FloatType"""
131131
132- type : typing .Literal ["float" ] = "float"
132+ type : typing .Literal ["float" ] = "float" # pyright: ignore[reportInvalidTypeForm]
133133
134134
135135FolderRid = core .RID
@@ -143,19 +143,19 @@ class FloatType(core.ModelBase):
143143class IntegerType (core .ModelBase ):
144144 """IntegerType"""
145145
146- type : typing .Literal ["integer" ] = "integer"
146+ type : typing .Literal ["integer" ] = "integer" # pyright: ignore[reportInvalidTypeForm]
147147
148148
149149class LongType (core .ModelBase ):
150150 """LongType"""
151151
152- type : typing .Literal ["long" ] = "long"
152+ type : typing .Literal ["long" ] = "long" # pyright: ignore[reportInvalidTypeForm]
153153
154154
155155class MarkingType (core .ModelBase ):
156156 """MarkingType"""
157157
158- type : typing .Literal ["marking" ] = "marking"
158+ type : typing .Literal ["marking" ] = "marking" # pyright: ignore[reportInvalidTypeForm]
159159
160160
161161MediaType = str
@@ -168,7 +168,7 @@ class MarkingType(core.ModelBase):
168168class NullType (core .ModelBase ):
169169 """NullType"""
170170
171- type : typing .Literal ["null" ] = "null"
171+ type : typing .Literal ["null" ] = "null" # pyright: ignore[reportInvalidTypeForm]
172172
173173
174174OperationScope = str
@@ -198,7 +198,7 @@ class NullType(core.ModelBase):
198198class ShortType (core .ModelBase ):
199199 """ShortType"""
200200
201- type : typing .Literal ["short" ] = "short"
201+ type : typing .Literal ["short" ] = "short" # pyright: ignore[reportInvalidTypeForm]
202202
203203
204204SizeBytes = core .Long
@@ -208,7 +208,7 @@ class ShortType(core.ModelBase):
208208class StringType (core .ModelBase ):
209209 """StringType"""
210210
211- type : typing .Literal ["string" ] = "string"
211+ type : typing .Literal ["string" ] = "string" # pyright: ignore[reportInvalidTypeForm]
212212
213213
214214StructFieldName = str
@@ -218,7 +218,7 @@ class StringType(core.ModelBase):
218218class TimestampType (core .ModelBase ):
219219 """TimestampType"""
220220
221- type : typing .Literal ["timestamp" ] = "timestamp"
221+ type : typing .Literal ["timestamp" ] = "timestamp" # pyright: ignore[reportInvalidTypeForm]
222222
223223
224224TotalCount = core .Long
@@ -236,9 +236,11 @@ class TimestampType(core.ModelBase):
236236class UnsupportedType (core .ModelBase ):
237237 """UnsupportedType"""
238238
239- unsupported_type : str = pydantic .Field (alias = str ("unsupportedType" )) # type: ignore[literal-required]
240- params : typing .Dict [UnsupportedTypeParamKey , UnsupportedTypeParamValue ]
241- type : typing .Literal ["unsupported" ] = "unsupported"
239+ unsupported_type : str = pydantic .Field (alias = str ("unsupportedType" )) # type: ignore[literal-required] # pyright: ignore[reportInvalidTypeForm]
240+ params : typing .Dict [
241+ UnsupportedTypeParamKey , UnsupportedTypeParamValue
242+ ] # pyright: ignore[reportInvalidTypeForm]
243+ type : typing .Literal ["unsupported" ] = "unsupported" # pyright: ignore[reportInvalidTypeForm]
242244
243245
244246UnsupportedTypeParamKey = str
0 commit comments