@@ -20,18 +20,18 @@ class Form(_message.Message):
2020 CODE : Form .Field .Type
2121 FILE : Form .Field .Type
2222 class Code (_message .Message ):
23- __slots__ = ("runtimes" , "max_attachments" , "max_attachment_size " , "attachment_types" , "attachment_extensions" )
23+ __slots__ = ("runtimes" , "max_attachments" , "attachment_max_size " , "attachment_types" , "attachment_extensions" )
2424 RUNTIMES_FIELD_NUMBER : _ClassVar [int ]
2525 MAX_ATTACHMENTS_FIELD_NUMBER : _ClassVar [int ]
26- MAX_ATTACHMENT_SIZE_FIELD_NUMBER : _ClassVar [int ]
26+ ATTACHMENT_MAX_SIZE_FIELD_NUMBER : _ClassVar [int ]
2727 ATTACHMENT_TYPES_FIELD_NUMBER : _ClassVar [int ]
2828 ATTACHMENT_EXTENSIONS_FIELD_NUMBER : _ClassVar [int ]
2929 runtimes : _containers .RepeatedScalarFieldContainer [str ]
3030 max_attachments : int
31- max_attachment_size : int
31+ attachment_max_size : int
3232 attachment_types : _containers .RepeatedScalarFieldContainer [str ]
3333 attachment_extensions : _containers .RepeatedScalarFieldContainer [str ]
34- def __init__ (self , runtimes : _Optional [_Iterable [str ]] = ..., max_attachments : _Optional [int ] = ..., max_attachment_size : _Optional [int ] = ..., attachment_types : _Optional [_Iterable [str ]] = ..., attachment_extensions : _Optional [_Iterable [str ]] = ...) -> None : ...
34+ def __init__ (self , runtimes : _Optional [_Iterable [str ]] = ..., max_attachments : _Optional [int ] = ..., attachment_max_size : _Optional [int ] = ..., attachment_types : _Optional [_Iterable [str ]] = ..., attachment_extensions : _Optional [_Iterable [str ]] = ...) -> None : ...
3535 class File (_message .Message ):
3636 __slots__ = ("types" , "extensions" , "max_size" )
3737 TYPES_FIELD_NUMBER : _ClassVar [int ]
0 commit comments