@@ -238,52 +238,6 @@ See https://cocodataset.org/#format-data.
238238"""
239239global___DatasetVersionExportFormat = DatasetVersionExportFormat
240240
241- class _ExpirationAction:
242- ValueType = typing.NewType("ValueType", builtins.int)
243- V: typing_extensions.TypeAlias = ValueType
244-
245- class _ExpirationActionEnumTypeWrapper(
246- google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ExpirationAction.ValueType],
247- builtins.type,
248- ):
249- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
250- EXPIRATION_ACTION_NOT_SET: _ExpirationAction.ValueType # 0
251- DELAY: _ExpirationAction.ValueType # 1
252- """Progressively delay the execution of operations"""
253- EXPIRY: _ExpirationAction.ValueType # 2
254- """Cease functioning"""
255-
256- class ExpirationAction(_ExpirationAction, metaclass=_ExpirationActionEnumTypeWrapper): ...
257-
258- EXPIRATION_ACTION_NOT_SET: ExpirationAction.ValueType # 0
259- DELAY: ExpirationAction.ValueType # 1
260- """Progressively delay the execution of operations"""
261- EXPIRY: ExpirationAction.ValueType # 2
262- """Cease functioning"""
263- global___ExpirationAction = ExpirationAction
264-
265- class _LicenseScope:
266- ValueType = typing.NewType("ValueType", builtins.int)
267- V: typing_extensions.TypeAlias = ValueType
268-
269- class _LicenseScopeEnumTypeWrapper(
270- google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_LicenseScope.ValueType],
271- builtins.type,
272- ):
273- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
274- LICENSE_SCOPE_NOT_SET: _LicenseScope.ValueType # 0
275- PREDICT: _LicenseScope.ValueType # 1
276- TRAIN: _LicenseScope.ValueType # 2
277- SEARCH: _LicenseScope.ValueType # 3
278-
279- class LicenseScope(_LicenseScope, metaclass=_LicenseScopeEnumTypeWrapper): ...
280-
281- LICENSE_SCOPE_NOT_SET: LicenseScope.ValueType # 0
282- PREDICT: LicenseScope.ValueType # 1
283- TRAIN: LicenseScope.ValueType # 2
284- SEARCH: LicenseScope.ValueType # 3
285- global___LicenseScope = LicenseScope
286-
287241class _LicenseType:
288242 ValueType = typing.NewType("ValueType", builtins.int)
289243 V: typing_extensions.TypeAlias = ValueType
@@ -2636,6 +2590,7 @@ class Data(google.protobuf.message.Message):
26362590 BYTES_VALUE_FIELD_NUMBER: builtins.int
26372591 BOOL_VALUE_FIELD_NUMBER: builtins.int
26382592 STRING_VALUE_FIELD_NUMBER: builtins.int
2593+ STRUCT_VALUE_FIELD_NUMBER: builtins.int
26392594 @property
26402595 def image(self) -> global___Image:
26412596 """Input and output images."""
@@ -2728,6 +2683,9 @@ class Data(google.protobuf.message.Message):
27282683 """Input and output bool data"""
27292684 string_value: builtins.str
27302685 """Input and output string data"""
2686+ @property
2687+ def struct_value(self) -> google.protobuf.struct_pb2.Struct:
2688+ """To handle Input and output json"""
27312689 def __init__(
27322690 self,
27332691 *,
@@ -2754,6 +2712,7 @@ class Data(google.protobuf.message.Message):
27542712 bytes_value: builtins.bytes = ...,
27552713 bool_value: builtins.bool = ...,
27562714 string_value: builtins.str = ...,
2715+ struct_value: google.protobuf.struct_pb2.Struct | None = ...,
27572716 ) -> None: ...
27582717 def HasField(
27592718 self,
@@ -2768,6 +2727,8 @@ class Data(google.protobuf.message.Message):
27682727 b"metadata",
27692728 "ndarray",
27702729 b"ndarray",
2730+ "struct_value",
2731+ b"struct_value",
27712732 "text",
27722733 b"text",
27732734 "video",
@@ -2815,6 +2776,8 @@ class Data(google.protobuf.message.Message):
28152776 b"regions",
28162777 "string_value",
28172778 b"string_value",
2779+ "struct_value",
2780+ b"struct_value",
28182781 "text",
28192782 b"text",
28202783 "time_segments",
0 commit comments