@@ -8,7 +8,7 @@ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
88DESCRIPTOR : _descriptor .FileDescriptor
99
1010class Violation (_message .Message ):
11- __slots__ = ("id" , "status" , "type" , "summary" , "participant_id" , "submission_id" , "created_by" , "created_at" , "confirmed_by" , "confirmed_at" )
11+ __slots__ = ("id" , "status" , "type" , "summary" , "automatic" , " participant_id" , "submission_id" , "created_by" , "created_at" , "confirmed_by" , "confirmed_at" )
1212 class Status (int , metaclass = _enum_type_wrapper .EnumTypeWrapper ):
1313 __slots__ = ()
1414 UNKNOWN_STATUS : _ClassVar [Violation .Status ]
@@ -35,17 +35,18 @@ class Violation(_message.Message):
3535 __slots__ = ()
3636 UNSPECIFIED : _ClassVar [Violation .Patch .Field ]
3737 SUMMARY : _ClassVar [Violation .Patch .Field ]
38- CANCELLED : _ClassVar [Violation .Patch .Field ]
38+ STATUS : _ClassVar [Violation .Patch .Field ]
3939 AUTOMATIC : _ClassVar [Violation .Patch .Field ]
4040 UNSPECIFIED : Violation .Patch .Field
4141 SUMMARY : Violation .Patch .Field
42- CANCELLED : Violation .Patch .Field
42+ STATUS : Violation .Patch .Field
4343 AUTOMATIC : Violation .Patch .Field
4444 def __init__ (self ) -> None : ...
4545 ID_FIELD_NUMBER : _ClassVar [int ]
4646 STATUS_FIELD_NUMBER : _ClassVar [int ]
4747 TYPE_FIELD_NUMBER : _ClassVar [int ]
4848 SUMMARY_FIELD_NUMBER : _ClassVar [int ]
49+ AUTOMATIC_FIELD_NUMBER : _ClassVar [int ]
4950 PARTICIPANT_ID_FIELD_NUMBER : _ClassVar [int ]
5051 SUBMISSION_ID_FIELD_NUMBER : _ClassVar [int ]
5152 CREATED_BY_FIELD_NUMBER : _ClassVar [int ]
@@ -56,10 +57,11 @@ class Violation(_message.Message):
5657 status : Violation .Status
5758 type : Violation .Type
5859 summary : str
60+ automatic : bool
5961 participant_id : str
6062 submission_id : str
6163 created_by : str
6264 created_at : _timestamp_pb2 .Timestamp
6365 confirmed_by : str
6466 confirmed_at : _timestamp_pb2 .Timestamp
65- def __init__ (self , id : _Optional [str ] = ..., status : _Optional [_Union [Violation .Status , str ]] = ..., type : _Optional [_Union [Violation .Type , str ]] = ..., summary : _Optional [str ] = ..., participant_id : _Optional [str ] = ..., submission_id : _Optional [str ] = ..., created_by : _Optional [str ] = ..., created_at : _Optional [_Union [datetime .datetime , _timestamp_pb2 .Timestamp , _Mapping ]] = ..., confirmed_by : _Optional [str ] = ..., confirmed_at : _Optional [_Union [datetime .datetime , _timestamp_pb2 .Timestamp , _Mapping ]] = ...) -> None : ...
67+ def __init__ (self , id : _Optional [str ] = ..., status : _Optional [_Union [Violation .Status , str ]] = ..., type : _Optional [_Union [Violation .Type , str ]] = ..., summary : _Optional [str ] = ..., automatic : bool = ..., participant_id : _Optional [str ] = ..., submission_id : _Optional [str ] = ..., created_by : _Optional [str ] = ..., created_at : _Optional [_Union [datetime .datetime , _timestamp_pb2 .Timestamp , _Mapping ]] = ..., confirmed_by : _Optional [str ] = ..., confirmed_at : _Optional [_Union [datetime .datetime , _timestamp_pb2 .Timestamp , _Mapping ]] = ...) -> None : ...
0 commit comments