@@ -5469,9 +5469,8 @@ class GenerateVideosOperation(_common.BaseModel):
54695469 default = None ,
54705470 description = """The error result of the operation in case of failure or cancellation.""" ,
54715471 )
5472- response : Optional [dict [str , Any ]] = Field (
5473- default = None ,
5474- description = """The normal response of the operation in case of success.""" ,
5472+ response : Optional [GenerateVideosResponse ] = Field (
5473+ default = None , description = """The generated videos."""
54755474 )
54765475 result : Optional [GenerateVideosResponse ] = Field (
54775476 default = None , description = """The generated videos."""
@@ -5493,8 +5492,8 @@ class GenerateVideosOperationDict(TypedDict, total=False):
54935492 error : Optional [dict [str , Any ]]
54945493 """The error result of the operation in case of failure or cancellation."""
54955494
5496- response : Optional [dict [ str , Any ] ]
5497- """The normal response of the operation in case of success ."""
5495+ response : Optional [GenerateVideosResponseDict ]
5496+ """The generated videos ."""
54985497
54995498 result : Optional [GenerateVideosResponseDict ]
55005499 """The generated videos."""
@@ -6691,10 +6690,6 @@ class Operation(_common.BaseModel):
66916690 default = None ,
66926691 description = """The error result of the operation in case of failure or cancellation.""" ,
66936692 )
6694- response : Optional [dict [str , Any ]] = Field (
6695- default = None ,
6696- description = """The normal response of the operation in case of success.""" ,
6697- )
66986693
66996694
67006695class OperationDict (TypedDict , total = False ):
@@ -6712,9 +6707,6 @@ class OperationDict(TypedDict, total=False):
67126707 error : Optional [dict [str , Any ]]
67136708 """The error result of the operation in case of failure or cancellation."""
67146709
6715- response : Optional [dict [str , Any ]]
6716- """The normal response of the operation in case of success."""
6717-
67186710
67196711OperationOrDict = Union [Operation , OperationDict ]
67206712
0 commit comments