// This is a generated file - do not edit. // // Generated from google/protobuf/descriptor.proto. // @dart = 3.3 // ignore_for_file: annotate_overrides, camel_case_types, comment_references // ignore_for_file: constant_identifier_names // ignore_for_file: curly_braces_in_flow_control_structures // ignore_for_file: deprecated_member_use_from_same_package, library_prefixes // ignore_for_file: non_constant_identifier_names import 'dart:core' as $core; import 'package:fixnum/fixnum.dart' as $fixnum; import 'package:protobuf/protobuf.dart' as $pb; import 'descriptor.pbenum.dart'; export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions; export 'descriptor.pbenum.dart'; /// The protocol compiler can output a FileDescriptorSet containing the .proto /// files it parses. class FileDescriptorSet extends $pb.GeneratedMessage { factory FileDescriptorSet({ $core.Iterable? file, }) { final result = create(); if (file != null) result.file.addAll(file); return result; } FileDescriptorSet._(); factory FileDescriptorSet.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory FileDescriptorSet.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FileDescriptorSet', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(1, _omitFieldNames ? '' : 'file', $pb.PbFieldType.PM, subBuilder: FileDescriptorProto.create) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileDescriptorSet clone() => FileDescriptorSet()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileDescriptorSet copyWith(void Function(FileDescriptorSet) updates) => super.copyWith((message) => updates(message as FileDescriptorSet)) as FileDescriptorSet; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static FileDescriptorSet create() => FileDescriptorSet._(); @$core.override FileDescriptorSet createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FileDescriptorSet getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static FileDescriptorSet? _defaultInstance; @$pb.TagNumber(1) $pb.PbList get file => $_getList(0); } /// Describes a complete .proto file. class FileDescriptorProto extends $pb.GeneratedMessage { factory FileDescriptorProto({ $core.String? name, $core.String? package, $core.Iterable<$core.String>? dependency, $core.Iterable? messageType, $core.Iterable? enumType, $core.Iterable? service, $core.Iterable? extension, FileOptions? options, SourceCodeInfo? sourceCodeInfo, $core.Iterable<$core.int>? publicDependency, $core.Iterable<$core.int>? weakDependency, $core.String? syntax, }) { final result = create(); if (name != null) result.name = name; if (package != null) result.package = package; if (dependency != null) result.dependency.addAll(dependency); if (messageType != null) result.messageType.addAll(messageType); if (enumType != null) result.enumType.addAll(enumType); if (service != null) result.service.addAll(service); if (extension != null) result.extension.addAll(extension); if (options != null) result.options = options; if (sourceCodeInfo != null) result.sourceCodeInfo = sourceCodeInfo; if (publicDependency != null) result.publicDependency.addAll(publicDependency); if (weakDependency != null) result.weakDependency.addAll(weakDependency); if (syntax != null) result.syntax = syntax; return result; } FileDescriptorProto._(); factory FileDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory FileDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FileDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..aOS(2, _omitFieldNames ? '' : 'package') ..pPS(3, _omitFieldNames ? '' : 'dependency') ..pc(4, _omitFieldNames ? '' : 'messageType', $pb.PbFieldType.PM, subBuilder: DescriptorProto.create) ..pc(5, _omitFieldNames ? '' : 'enumType', $pb.PbFieldType.PM, subBuilder: EnumDescriptorProto.create) ..pc(6, _omitFieldNames ? '' : 'service', $pb.PbFieldType.PM, subBuilder: ServiceDescriptorProto.create) ..pc(7, _omitFieldNames ? '' : 'extension', $pb.PbFieldType.PM, subBuilder: FieldDescriptorProto.create) ..aOM(8, _omitFieldNames ? '' : 'options', subBuilder: FileOptions.create) ..aOM(9, _omitFieldNames ? '' : 'sourceCodeInfo', subBuilder: SourceCodeInfo.create) ..p<$core.int>(10, _omitFieldNames ? '' : 'publicDependency', $pb.PbFieldType.P3) ..p<$core.int>(11, _omitFieldNames ? '' : 'weakDependency', $pb.PbFieldType.P3) ..aOS(12, _omitFieldNames ? '' : 'syntax') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileDescriptorProto clone() => FileDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileDescriptorProto copyWith(void Function(FileDescriptorProto) updates) => super.copyWith((message) => updates(message as FileDescriptorProto)) as FileDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static FileDescriptorProto create() => FileDescriptorProto._(); @$core.override FileDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FileDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static FileDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $core.String get package => $_getSZ(1); @$pb.TagNumber(2) set package($core.String value) => $_setString(1, value); @$pb.TagNumber(2) $core.bool hasPackage() => $_has(1); @$pb.TagNumber(2) void clearPackage() => $_clearField(2); /// Names of files imported by this file. @$pb.TagNumber(3) $pb.PbList<$core.String> get dependency => $_getList(2); /// All top-level definitions in this file. @$pb.TagNumber(4) $pb.PbList get messageType => $_getList(3); @$pb.TagNumber(5) $pb.PbList get enumType => $_getList(4); @$pb.TagNumber(6) $pb.PbList get service => $_getList(5); @$pb.TagNumber(7) $pb.PbList get extension => $_getList(6); @$pb.TagNumber(8) FileOptions get options => $_getN(7); @$pb.TagNumber(8) set options(FileOptions value) => $_setField(8, value); @$pb.TagNumber(8) $core.bool hasOptions() => $_has(7); @$pb.TagNumber(8) void clearOptions() => $_clearField(8); @$pb.TagNumber(8) FileOptions ensureOptions() => $_ensure(7); /// This field contains optional information about the original source code. /// You may safely remove this entire field without harming runtime /// functionality of the descriptors -- the information is needed only by /// development tools. @$pb.TagNumber(9) SourceCodeInfo get sourceCodeInfo => $_getN(8); @$pb.TagNumber(9) set sourceCodeInfo(SourceCodeInfo value) => $_setField(9, value); @$pb.TagNumber(9) $core.bool hasSourceCodeInfo() => $_has(8); @$pb.TagNumber(9) void clearSourceCodeInfo() => $_clearField(9); @$pb.TagNumber(9) SourceCodeInfo ensureSourceCodeInfo() => $_ensure(8); /// Indexes of the public imported files in the dependency list above. @$pb.TagNumber(10) $pb.PbList<$core.int> get publicDependency => $_getList(9); /// Indexes of the weak imported files in the dependency list. /// For Google-internal migration only. Do not use. @$pb.TagNumber(11) $pb.PbList<$core.int> get weakDependency => $_getList(10); /// The syntax of the proto file. /// The supported values are "proto2" and "proto3". @$pb.TagNumber(12) $core.String get syntax => $_getSZ(11); @$pb.TagNumber(12) set syntax($core.String value) => $_setString(11, value); @$pb.TagNumber(12) $core.bool hasSyntax() => $_has(11); @$pb.TagNumber(12) void clearSyntax() => $_clearField(12); } class DescriptorProto_ExtensionRange extends $pb.GeneratedMessage { factory DescriptorProto_ExtensionRange({ $core.int? start, $core.int? end, ExtensionRangeOptions? options, }) { final result = create(); if (start != null) result.start = start; if (end != null) result.end = end; if (options != null) result.options = options; return result; } DescriptorProto_ExtensionRange._(); factory DescriptorProto_ExtensionRange.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory DescriptorProto_ExtensionRange.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DescriptorProto.ExtensionRange', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..a<$core.int>(1, _omitFieldNames ? '' : 'start', $pb.PbFieldType.O3) ..a<$core.int>(2, _omitFieldNames ? '' : 'end', $pb.PbFieldType.O3) ..aOM(3, _omitFieldNames ? '' : 'options', subBuilder: ExtensionRangeOptions.create) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto_ExtensionRange clone() => DescriptorProto_ExtensionRange()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto_ExtensionRange copyWith(void Function(DescriptorProto_ExtensionRange) updates) => super.copyWith((message) => updates(message as DescriptorProto_ExtensionRange)) as DescriptorProto_ExtensionRange; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DescriptorProto_ExtensionRange create() => DescriptorProto_ExtensionRange._(); @$core.override DescriptorProto_ExtensionRange createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DescriptorProto_ExtensionRange getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DescriptorProto_ExtensionRange? _defaultInstance; @$pb.TagNumber(1) $core.int get start => $_getIZ(0); @$pb.TagNumber(1) set start($core.int value) => $_setSignedInt32(0, value); @$pb.TagNumber(1) $core.bool hasStart() => $_has(0); @$pb.TagNumber(1) void clearStart() => $_clearField(1); @$pb.TagNumber(2) $core.int get end => $_getIZ(1); @$pb.TagNumber(2) set end($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasEnd() => $_has(1); @$pb.TagNumber(2) void clearEnd() => $_clearField(2); @$pb.TagNumber(3) ExtensionRangeOptions get options => $_getN(2); @$pb.TagNumber(3) set options(ExtensionRangeOptions value) => $_setField(3, value); @$pb.TagNumber(3) $core.bool hasOptions() => $_has(2); @$pb.TagNumber(3) void clearOptions() => $_clearField(3); @$pb.TagNumber(3) ExtensionRangeOptions ensureOptions() => $_ensure(2); } /// Range of reserved tag numbers. Reserved tag numbers may not be used by /// fields or extension ranges in the same message. Reserved ranges may /// not overlap. class DescriptorProto_ReservedRange extends $pb.GeneratedMessage { factory DescriptorProto_ReservedRange({ $core.int? start, $core.int? end, }) { final result = create(); if (start != null) result.start = start; if (end != null) result.end = end; return result; } DescriptorProto_ReservedRange._(); factory DescriptorProto_ReservedRange.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory DescriptorProto_ReservedRange.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DescriptorProto.ReservedRange', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..a<$core.int>(1, _omitFieldNames ? '' : 'start', $pb.PbFieldType.O3) ..a<$core.int>(2, _omitFieldNames ? '' : 'end', $pb.PbFieldType.O3) ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto_ReservedRange clone() => DescriptorProto_ReservedRange()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto_ReservedRange copyWith(void Function(DescriptorProto_ReservedRange) updates) => super.copyWith((message) => updates(message as DescriptorProto_ReservedRange)) as DescriptorProto_ReservedRange; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DescriptorProto_ReservedRange create() => DescriptorProto_ReservedRange._(); @$core.override DescriptorProto_ReservedRange createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DescriptorProto_ReservedRange getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DescriptorProto_ReservedRange? _defaultInstance; @$pb.TagNumber(1) $core.int get start => $_getIZ(0); @$pb.TagNumber(1) set start($core.int value) => $_setSignedInt32(0, value); @$pb.TagNumber(1) $core.bool hasStart() => $_has(0); @$pb.TagNumber(1) void clearStart() => $_clearField(1); @$pb.TagNumber(2) $core.int get end => $_getIZ(1); @$pb.TagNumber(2) set end($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasEnd() => $_has(1); @$pb.TagNumber(2) void clearEnd() => $_clearField(2); } /// Describes a message type. class DescriptorProto extends $pb.GeneratedMessage { factory DescriptorProto({ $core.String? name, $core.Iterable? field, $core.Iterable? nestedType, $core.Iterable? enumType, $core.Iterable? extensionRange, $core.Iterable? extension, MessageOptions? options, $core.Iterable? oneofDecl, $core.Iterable? reservedRange, $core.Iterable<$core.String>? reservedName, }) { final result = create(); if (name != null) result.name = name; if (field != null) result.field.addAll(field); if (nestedType != null) result.nestedType.addAll(nestedType); if (enumType != null) result.enumType.addAll(enumType); if (extensionRange != null) result.extensionRange.addAll(extensionRange); if (extension != null) result.extension.addAll(extension); if (options != null) result.options = options; if (oneofDecl != null) result.oneofDecl.addAll(oneofDecl); if (reservedRange != null) result.reservedRange.addAll(reservedRange); if (reservedName != null) result.reservedName.addAll(reservedName); return result; } DescriptorProto._(); factory DescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory DescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..pc(2, _omitFieldNames ? '' : 'field', $pb.PbFieldType.PM, subBuilder: FieldDescriptorProto.create) ..pc(3, _omitFieldNames ? '' : 'nestedType', $pb.PbFieldType.PM, subBuilder: DescriptorProto.create) ..pc(4, _omitFieldNames ? '' : 'enumType', $pb.PbFieldType.PM, subBuilder: EnumDescriptorProto.create) ..pc(5, _omitFieldNames ? '' : 'extensionRange', $pb.PbFieldType.PM, subBuilder: DescriptorProto_ExtensionRange.create) ..pc(6, _omitFieldNames ? '' : 'extension', $pb.PbFieldType.PM, subBuilder: FieldDescriptorProto.create) ..aOM(7, _omitFieldNames ? '' : 'options', subBuilder: MessageOptions.create) ..pc(8, _omitFieldNames ? '' : 'oneofDecl', $pb.PbFieldType.PM, subBuilder: OneofDescriptorProto.create) ..pc(9, _omitFieldNames ? '' : 'reservedRange', $pb.PbFieldType.PM, subBuilder: DescriptorProto_ReservedRange.create) ..pPS(10, _omitFieldNames ? '' : 'reservedName') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto clone() => DescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') DescriptorProto copyWith(void Function(DescriptorProto) updates) => super.copyWith((message) => updates(message as DescriptorProto)) as DescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DescriptorProto create() => DescriptorProto._(); @$core.override DescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $pb.PbList get field => $_getList(1); @$pb.TagNumber(3) $pb.PbList get nestedType => $_getList(2); @$pb.TagNumber(4) $pb.PbList get enumType => $_getList(3); @$pb.TagNumber(5) $pb.PbList get extensionRange => $_getList(4); @$pb.TagNumber(6) $pb.PbList get extension => $_getList(5); @$pb.TagNumber(7) MessageOptions get options => $_getN(6); @$pb.TagNumber(7) set options(MessageOptions value) => $_setField(7, value); @$pb.TagNumber(7) $core.bool hasOptions() => $_has(6); @$pb.TagNumber(7) void clearOptions() => $_clearField(7); @$pb.TagNumber(7) MessageOptions ensureOptions() => $_ensure(6); @$pb.TagNumber(8) $pb.PbList get oneofDecl => $_getList(7); @$pb.TagNumber(9) $pb.PbList get reservedRange => $_getList(8); /// Reserved field names, which may not be used by fields in the same message. /// A given name may only be reserved once. @$pb.TagNumber(10) $pb.PbList<$core.String> get reservedName => $_getList(9); } class ExtensionRangeOptions extends $pb.GeneratedMessage { factory ExtensionRangeOptions({ $core.Iterable? uninterpretedOption, }) { final result = create(); if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } ExtensionRangeOptions._(); factory ExtensionRangeOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory ExtensionRangeOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExtensionRangeOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ExtensionRangeOptions clone() => ExtensionRangeOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ExtensionRangeOptions copyWith(void Function(ExtensionRangeOptions) updates) => super.copyWith((message) => updates(message as ExtensionRangeOptions)) as ExtensionRangeOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static ExtensionRangeOptions create() => ExtensionRangeOptions._(); @$core.override ExtensionRangeOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static ExtensionRangeOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static ExtensionRangeOptions? _defaultInstance; /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(0); } /// Describes a field within a message. class FieldDescriptorProto extends $pb.GeneratedMessage { factory FieldDescriptorProto({ $core.String? name, $core.String? extendee, $core.int? number, FieldDescriptorProto_Label? label, FieldDescriptorProto_Type? type, $core.String? typeName, $core.String? defaultValue, FieldOptions? options, $core.int? oneofIndex, $core.String? jsonName, }) { final result = create(); if (name != null) result.name = name; if (extendee != null) result.extendee = extendee; if (number != null) result.number = number; if (label != null) result.label = label; if (type != null) result.type = type; if (typeName != null) result.typeName = typeName; if (defaultValue != null) result.defaultValue = defaultValue; if (options != null) result.options = options; if (oneofIndex != null) result.oneofIndex = oneofIndex; if (jsonName != null) result.jsonName = jsonName; return result; } FieldDescriptorProto._(); factory FieldDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory FieldDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FieldDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..aOS(2, _omitFieldNames ? '' : 'extendee') ..a<$core.int>(3, _omitFieldNames ? '' : 'number', $pb.PbFieldType.O3) ..e(4, _omitFieldNames ? '' : 'label', $pb.PbFieldType.OE, defaultOrMaker: FieldDescriptorProto_Label.LABEL_OPTIONAL, valueOf: FieldDescriptorProto_Label.valueOf, enumValues: FieldDescriptorProto_Label.values) ..e(5, _omitFieldNames ? '' : 'type', $pb.PbFieldType.OE, defaultOrMaker: FieldDescriptorProto_Type.TYPE_DOUBLE, valueOf: FieldDescriptorProto_Type.valueOf, enumValues: FieldDescriptorProto_Type.values) ..aOS(6, _omitFieldNames ? '' : 'typeName') ..aOS(7, _omitFieldNames ? '' : 'defaultValue') ..aOM(8, _omitFieldNames ? '' : 'options', subBuilder: FieldOptions.create) ..a<$core.int>(9, _omitFieldNames ? '' : 'oneofIndex', $pb.PbFieldType.O3) ..aOS(10, _omitFieldNames ? '' : 'jsonName') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FieldDescriptorProto clone() => FieldDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FieldDescriptorProto copyWith(void Function(FieldDescriptorProto) updates) => super.copyWith((message) => updates(message as FieldDescriptorProto)) as FieldDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static FieldDescriptorProto create() => FieldDescriptorProto._(); @$core.override FieldDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FieldDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static FieldDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); /// For extensions, this is the name of the type being extended. It is /// resolved in the same manner as type_name. @$pb.TagNumber(2) $core.String get extendee => $_getSZ(1); @$pb.TagNumber(2) set extendee($core.String value) => $_setString(1, value); @$pb.TagNumber(2) $core.bool hasExtendee() => $_has(1); @$pb.TagNumber(2) void clearExtendee() => $_clearField(2); @$pb.TagNumber(3) $core.int get number => $_getIZ(2); @$pb.TagNumber(3) set number($core.int value) => $_setSignedInt32(2, value); @$pb.TagNumber(3) $core.bool hasNumber() => $_has(2); @$pb.TagNumber(3) void clearNumber() => $_clearField(3); @$pb.TagNumber(4) FieldDescriptorProto_Label get label => $_getN(3); @$pb.TagNumber(4) set label(FieldDescriptorProto_Label value) => $_setField(4, value); @$pb.TagNumber(4) $core.bool hasLabel() => $_has(3); @$pb.TagNumber(4) void clearLabel() => $_clearField(4); /// If type_name is set, this need not be set. If both this and type_name /// are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP. @$pb.TagNumber(5) FieldDescriptorProto_Type get type => $_getN(4); @$pb.TagNumber(5) set type(FieldDescriptorProto_Type value) => $_setField(5, value); @$pb.TagNumber(5) $core.bool hasType() => $_has(4); @$pb.TagNumber(5) void clearType() => $_clearField(5); /// For message and enum types, this is the name of the type. If the name /// starts with a '.', it is fully-qualified. Otherwise, C++-like scoping /// rules are used to find the type (i.e. first the nested types within this /// message are searched, then within the parent, on up to the root /// namespace). @$pb.TagNumber(6) $core.String get typeName => $_getSZ(5); @$pb.TagNumber(6) set typeName($core.String value) => $_setString(5, value); @$pb.TagNumber(6) $core.bool hasTypeName() => $_has(5); @$pb.TagNumber(6) void clearTypeName() => $_clearField(6); /// For numeric types, contains the original text representation of the value. /// For booleans, "true" or "false". /// For strings, contains the default text contents (not escaped in any way). /// For bytes, contains the C escaped value. All bytes >= 128 are escaped. /// TODO(kenton): Base-64 encode? @$pb.TagNumber(7) $core.String get defaultValue => $_getSZ(6); @$pb.TagNumber(7) set defaultValue($core.String value) => $_setString(6, value); @$pb.TagNumber(7) $core.bool hasDefaultValue() => $_has(6); @$pb.TagNumber(7) void clearDefaultValue() => $_clearField(7); @$pb.TagNumber(8) FieldOptions get options => $_getN(7); @$pb.TagNumber(8) set options(FieldOptions value) => $_setField(8, value); @$pb.TagNumber(8) $core.bool hasOptions() => $_has(7); @$pb.TagNumber(8) void clearOptions() => $_clearField(8); @$pb.TagNumber(8) FieldOptions ensureOptions() => $_ensure(7); /// If set, gives the index of a oneof in the containing type's oneof_decl /// list. This field is a member of that oneof. @$pb.TagNumber(9) $core.int get oneofIndex => $_getIZ(8); @$pb.TagNumber(9) set oneofIndex($core.int value) => $_setSignedInt32(8, value); @$pb.TagNumber(9) $core.bool hasOneofIndex() => $_has(8); @$pb.TagNumber(9) void clearOneofIndex() => $_clearField(9); /// JSON name of this field. The value is set by protocol compiler. If the /// user has set a "json_name" option on this field, that option's value /// will be used. Otherwise, it's deduced from the field's name by converting /// it to camelCase. @$pb.TagNumber(10) $core.String get jsonName => $_getSZ(9); @$pb.TagNumber(10) set jsonName($core.String value) => $_setString(9, value); @$pb.TagNumber(10) $core.bool hasJsonName() => $_has(9); @$pb.TagNumber(10) void clearJsonName() => $_clearField(10); } /// Describes a oneof. class OneofDescriptorProto extends $pb.GeneratedMessage { factory OneofDescriptorProto({ $core.String? name, OneofOptions? options, }) { final result = create(); if (name != null) result.name = name; if (options != null) result.options = options; return result; } OneofDescriptorProto._(); factory OneofDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory OneofDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OneofDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..aOM(2, _omitFieldNames ? '' : 'options', subBuilder: OneofOptions.create) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') OneofDescriptorProto clone() => OneofDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') OneofDescriptorProto copyWith(void Function(OneofDescriptorProto) updates) => super.copyWith((message) => updates(message as OneofDescriptorProto)) as OneofDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static OneofDescriptorProto create() => OneofDescriptorProto._(); @$core.override OneofDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static OneofDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static OneofDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) OneofOptions get options => $_getN(1); @$pb.TagNumber(2) set options(OneofOptions value) => $_setField(2, value); @$pb.TagNumber(2) $core.bool hasOptions() => $_has(1); @$pb.TagNumber(2) void clearOptions() => $_clearField(2); @$pb.TagNumber(2) OneofOptions ensureOptions() => $_ensure(1); } /// Range of reserved numeric values. Reserved values may not be used by /// entries in the same enum. Reserved ranges may not overlap. /// /// Note that this is distinct from DescriptorProto.ReservedRange in that it /// is inclusive such that it can appropriately represent the entire int32 /// domain. class EnumDescriptorProto_EnumReservedRange extends $pb.GeneratedMessage { factory EnumDescriptorProto_EnumReservedRange({ $core.int? start, $core.int? end, }) { final result = create(); if (start != null) result.start = start; if (end != null) result.end = end; return result; } EnumDescriptorProto_EnumReservedRange._(); factory EnumDescriptorProto_EnumReservedRange.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory EnumDescriptorProto_EnumReservedRange.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumDescriptorProto.EnumReservedRange', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..a<$core.int>(1, _omitFieldNames ? '' : 'start', $pb.PbFieldType.O3) ..a<$core.int>(2, _omitFieldNames ? '' : 'end', $pb.PbFieldType.O3) ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumDescriptorProto_EnumReservedRange clone() => EnumDescriptorProto_EnumReservedRange()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumDescriptorProto_EnumReservedRange copyWith(void Function(EnumDescriptorProto_EnumReservedRange) updates) => super.copyWith((message) => updates(message as EnumDescriptorProto_EnumReservedRange)) as EnumDescriptorProto_EnumReservedRange; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static EnumDescriptorProto_EnumReservedRange create() => EnumDescriptorProto_EnumReservedRange._(); @$core.override EnumDescriptorProto_EnumReservedRange createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static EnumDescriptorProto_EnumReservedRange getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static EnumDescriptorProto_EnumReservedRange? _defaultInstance; @$pb.TagNumber(1) $core.int get start => $_getIZ(0); @$pb.TagNumber(1) set start($core.int value) => $_setSignedInt32(0, value); @$pb.TagNumber(1) $core.bool hasStart() => $_has(0); @$pb.TagNumber(1) void clearStart() => $_clearField(1); @$pb.TagNumber(2) $core.int get end => $_getIZ(1); @$pb.TagNumber(2) set end($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasEnd() => $_has(1); @$pb.TagNumber(2) void clearEnd() => $_clearField(2); } /// Describes an enum type. class EnumDescriptorProto extends $pb.GeneratedMessage { factory EnumDescriptorProto({ $core.String? name, $core.Iterable? value, EnumOptions? options, $core.Iterable? reservedRange, $core.Iterable<$core.String>? reservedName, }) { final result = create(); if (name != null) result.name = name; if (value != null) result.value.addAll(value); if (options != null) result.options = options; if (reservedRange != null) result.reservedRange.addAll(reservedRange); if (reservedName != null) result.reservedName.addAll(reservedName); return result; } EnumDescriptorProto._(); factory EnumDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory EnumDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..pc(2, _omitFieldNames ? '' : 'value', $pb.PbFieldType.PM, subBuilder: EnumValueDescriptorProto.create) ..aOM(3, _omitFieldNames ? '' : 'options', subBuilder: EnumOptions.create) ..pc(4, _omitFieldNames ? '' : 'reservedRange', $pb.PbFieldType.PM, subBuilder: EnumDescriptorProto_EnumReservedRange.create) ..pPS(5, _omitFieldNames ? '' : 'reservedName') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumDescriptorProto clone() => EnumDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumDescriptorProto copyWith(void Function(EnumDescriptorProto) updates) => super.copyWith((message) => updates(message as EnumDescriptorProto)) as EnumDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static EnumDescriptorProto create() => EnumDescriptorProto._(); @$core.override EnumDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static EnumDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static EnumDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $pb.PbList get value => $_getList(1); @$pb.TagNumber(3) EnumOptions get options => $_getN(2); @$pb.TagNumber(3) set options(EnumOptions value) => $_setField(3, value); @$pb.TagNumber(3) $core.bool hasOptions() => $_has(2); @$pb.TagNumber(3) void clearOptions() => $_clearField(3); @$pb.TagNumber(3) EnumOptions ensureOptions() => $_ensure(2); /// Range of reserved numeric values. Reserved numeric values may not be used /// by enum values in the same enum declaration. Reserved ranges may not /// overlap. @$pb.TagNumber(4) $pb.PbList get reservedRange => $_getList(3); /// Reserved enum value names, which may not be reused. A given name may only /// be reserved once. @$pb.TagNumber(5) $pb.PbList<$core.String> get reservedName => $_getList(4); } /// Describes a value within an enum. class EnumValueDescriptorProto extends $pb.GeneratedMessage { factory EnumValueDescriptorProto({ $core.String? name, $core.int? number, EnumValueOptions? options, }) { final result = create(); if (name != null) result.name = name; if (number != null) result.number = number; if (options != null) result.options = options; return result; } EnumValueDescriptorProto._(); factory EnumValueDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory EnumValueDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumValueDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..a<$core.int>(2, _omitFieldNames ? '' : 'number', $pb.PbFieldType.O3) ..aOM(3, _omitFieldNames ? '' : 'options', subBuilder: EnumValueOptions.create) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumValueDescriptorProto clone() => EnumValueDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumValueDescriptorProto copyWith(void Function(EnumValueDescriptorProto) updates) => super.copyWith((message) => updates(message as EnumValueDescriptorProto)) as EnumValueDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static EnumValueDescriptorProto create() => EnumValueDescriptorProto._(); @$core.override EnumValueDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static EnumValueDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static EnumValueDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $core.int get number => $_getIZ(1); @$pb.TagNumber(2) set number($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasNumber() => $_has(1); @$pb.TagNumber(2) void clearNumber() => $_clearField(2); @$pb.TagNumber(3) EnumValueOptions get options => $_getN(2); @$pb.TagNumber(3) set options(EnumValueOptions value) => $_setField(3, value); @$pb.TagNumber(3) $core.bool hasOptions() => $_has(2); @$pb.TagNumber(3) void clearOptions() => $_clearField(3); @$pb.TagNumber(3) EnumValueOptions ensureOptions() => $_ensure(2); } /// Describes a service. class ServiceDescriptorProto extends $pb.GeneratedMessage { factory ServiceDescriptorProto({ $core.String? name, $core.Iterable? method, ServiceOptions? options, }) { final result = create(); if (name != null) result.name = name; if (method != null) result.method.addAll(method); if (options != null) result.options = options; return result; } ServiceDescriptorProto._(); factory ServiceDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory ServiceDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ServiceDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..pc(2, _omitFieldNames ? '' : 'method', $pb.PbFieldType.PM, subBuilder: MethodDescriptorProto.create) ..aOM(3, _omitFieldNames ? '' : 'options', subBuilder: ServiceOptions.create) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ServiceDescriptorProto clone() => ServiceDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ServiceDescriptorProto copyWith(void Function(ServiceDescriptorProto) updates) => super.copyWith((message) => updates(message as ServiceDescriptorProto)) as ServiceDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static ServiceDescriptorProto create() => ServiceDescriptorProto._(); @$core.override ServiceDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static ServiceDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static ServiceDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $pb.PbList get method => $_getList(1); @$pb.TagNumber(3) ServiceOptions get options => $_getN(2); @$pb.TagNumber(3) set options(ServiceOptions value) => $_setField(3, value); @$pb.TagNumber(3) $core.bool hasOptions() => $_has(2); @$pb.TagNumber(3) void clearOptions() => $_clearField(3); @$pb.TagNumber(3) ServiceOptions ensureOptions() => $_ensure(2); } /// Describes a method of a service. class MethodDescriptorProto extends $pb.GeneratedMessage { factory MethodDescriptorProto({ $core.String? name, $core.String? inputType, $core.String? outputType, MethodOptions? options, $core.bool? clientStreaming, $core.bool? serverStreaming, }) { final result = create(); if (name != null) result.name = name; if (inputType != null) result.inputType = inputType; if (outputType != null) result.outputType = outputType; if (options != null) result.options = options; if (clientStreaming != null) result.clientStreaming = clientStreaming; if (serverStreaming != null) result.serverStreaming = serverStreaming; return result; } MethodDescriptorProto._(); factory MethodDescriptorProto.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory MethodDescriptorProto.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MethodDescriptorProto', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'name') ..aOS(2, _omitFieldNames ? '' : 'inputType') ..aOS(3, _omitFieldNames ? '' : 'outputType') ..aOM(4, _omitFieldNames ? '' : 'options', subBuilder: MethodOptions.create) ..aOB(5, _omitFieldNames ? '' : 'clientStreaming') ..aOB(6, _omitFieldNames ? '' : 'serverStreaming') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MethodDescriptorProto clone() => MethodDescriptorProto()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MethodDescriptorProto copyWith(void Function(MethodDescriptorProto) updates) => super.copyWith((message) => updates(message as MethodDescriptorProto)) as MethodDescriptorProto; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static MethodDescriptorProto create() => MethodDescriptorProto._(); @$core.override MethodDescriptorProto createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static MethodDescriptorProto getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static MethodDescriptorProto? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); /// Input and output type names. These are resolved in the same way as /// FieldDescriptorProto.type_name, but must refer to a message type. @$pb.TagNumber(2) $core.String get inputType => $_getSZ(1); @$pb.TagNumber(2) set inputType($core.String value) => $_setString(1, value); @$pb.TagNumber(2) $core.bool hasInputType() => $_has(1); @$pb.TagNumber(2) void clearInputType() => $_clearField(2); @$pb.TagNumber(3) $core.String get outputType => $_getSZ(2); @$pb.TagNumber(3) set outputType($core.String value) => $_setString(2, value); @$pb.TagNumber(3) $core.bool hasOutputType() => $_has(2); @$pb.TagNumber(3) void clearOutputType() => $_clearField(3); @$pb.TagNumber(4) MethodOptions get options => $_getN(3); @$pb.TagNumber(4) set options(MethodOptions value) => $_setField(4, value); @$pb.TagNumber(4) $core.bool hasOptions() => $_has(3); @$pb.TagNumber(4) void clearOptions() => $_clearField(4); @$pb.TagNumber(4) MethodOptions ensureOptions() => $_ensure(3); /// Identifies if client streams multiple client messages @$pb.TagNumber(5) $core.bool get clientStreaming => $_getBF(4); @$pb.TagNumber(5) set clientStreaming($core.bool value) => $_setBool(4, value); @$pb.TagNumber(5) $core.bool hasClientStreaming() => $_has(4); @$pb.TagNumber(5) void clearClientStreaming() => $_clearField(5); /// Identifies if server streams multiple server messages @$pb.TagNumber(6) $core.bool get serverStreaming => $_getBF(5); @$pb.TagNumber(6) set serverStreaming($core.bool value) => $_setBool(5, value); @$pb.TagNumber(6) $core.bool hasServerStreaming() => $_has(5); @$pb.TagNumber(6) void clearServerStreaming() => $_clearField(6); } class FileOptions extends $pb.GeneratedMessage { factory FileOptions({ $core.String? javaPackage, $core.String? javaOuterClassname, FileOptions_OptimizeMode? optimizeFor, $core.bool? javaMultipleFiles, $core.String? goPackage, $core.bool? ccGenericServices, $core.bool? javaGenericServices, $core.bool? pyGenericServices, @$core.Deprecated('This field is deprecated.') $core.bool? javaGenerateEqualsAndHash, $core.bool? deprecated, $core.bool? javaStringCheckUtf8, $core.bool? ccEnableArenas, $core.String? objcClassPrefix, $core.String? csharpNamespace, $core.String? swiftPrefix, $core.String? phpClassPrefix, $core.String? phpNamespace, $core.bool? phpGenericServices, $core.String? phpMetadataNamespace, $core.String? rubyPackage, $core.Iterable? uninterpretedOption, }) { final result = create(); if (javaPackage != null) result.javaPackage = javaPackage; if (javaOuterClassname != null) result.javaOuterClassname = javaOuterClassname; if (optimizeFor != null) result.optimizeFor = optimizeFor; if (javaMultipleFiles != null) result.javaMultipleFiles = javaMultipleFiles; if (goPackage != null) result.goPackage = goPackage; if (ccGenericServices != null) result.ccGenericServices = ccGenericServices; if (javaGenericServices != null) result.javaGenericServices = javaGenericServices; if (pyGenericServices != null) result.pyGenericServices = pyGenericServices; if (javaGenerateEqualsAndHash != null) result.javaGenerateEqualsAndHash = javaGenerateEqualsAndHash; if (deprecated != null) result.deprecated = deprecated; if (javaStringCheckUtf8 != null) result.javaStringCheckUtf8 = javaStringCheckUtf8; if (ccEnableArenas != null) result.ccEnableArenas = ccEnableArenas; if (objcClassPrefix != null) result.objcClassPrefix = objcClassPrefix; if (csharpNamespace != null) result.csharpNamespace = csharpNamespace; if (swiftPrefix != null) result.swiftPrefix = swiftPrefix; if (phpClassPrefix != null) result.phpClassPrefix = phpClassPrefix; if (phpNamespace != null) result.phpNamespace = phpNamespace; if (phpGenericServices != null) result.phpGenericServices = phpGenericServices; if (phpMetadataNamespace != null) result.phpMetadataNamespace = phpMetadataNamespace; if (rubyPackage != null) result.rubyPackage = rubyPackage; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } FileOptions._(); factory FileOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory FileOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FileOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'javaPackage') ..aOS(8, _omitFieldNames ? '' : 'javaOuterClassname') ..e(9, _omitFieldNames ? '' : 'optimizeFor', $pb.PbFieldType.OE, defaultOrMaker: FileOptions_OptimizeMode.SPEED, valueOf: FileOptions_OptimizeMode.valueOf, enumValues: FileOptions_OptimizeMode.values) ..aOB(10, _omitFieldNames ? '' : 'javaMultipleFiles') ..aOS(11, _omitFieldNames ? '' : 'goPackage') ..aOB(16, _omitFieldNames ? '' : 'ccGenericServices') ..aOB(17, _omitFieldNames ? '' : 'javaGenericServices') ..aOB(18, _omitFieldNames ? '' : 'pyGenericServices') ..aOB(20, _omitFieldNames ? '' : 'javaGenerateEqualsAndHash') ..aOB(23, _omitFieldNames ? '' : 'deprecated') ..aOB(27, _omitFieldNames ? '' : 'javaStringCheckUtf8') ..aOB(31, _omitFieldNames ? '' : 'ccEnableArenas') ..aOS(36, _omitFieldNames ? '' : 'objcClassPrefix') ..aOS(37, _omitFieldNames ? '' : 'csharpNamespace') ..aOS(39, _omitFieldNames ? '' : 'swiftPrefix') ..aOS(40, _omitFieldNames ? '' : 'phpClassPrefix') ..aOS(41, _omitFieldNames ? '' : 'phpNamespace') ..aOB(42, _omitFieldNames ? '' : 'phpGenericServices') ..aOS(44, _omitFieldNames ? '' : 'phpMetadataNamespace') ..aOS(45, _omitFieldNames ? '' : 'rubyPackage') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileOptions clone() => FileOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileOptions copyWith(void Function(FileOptions) updates) => super.copyWith((message) => updates(message as FileOptions)) as FileOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static FileOptions create() => FileOptions._(); @$core.override FileOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FileOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static FileOptions? _defaultInstance; /// Sets the Java package where classes generated from this .proto will be /// placed. By default, the proto package is used, but this is often /// inappropriate because proto packages do not normally start with backwards /// domain names. @$pb.TagNumber(1) $core.String get javaPackage => $_getSZ(0); @$pb.TagNumber(1) set javaPackage($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasJavaPackage() => $_has(0); @$pb.TagNumber(1) void clearJavaPackage() => $_clearField(1); /// If set, all the classes from the .proto file are wrapped in a single /// outer class with the given name. This applies to both Proto1 /// (equivalent to the old "--one_java_file" option) and Proto2 (where /// a .proto always translates to a single class, but you may want to /// explicitly choose the class name). @$pb.TagNumber(8) $core.String get javaOuterClassname => $_getSZ(1); @$pb.TagNumber(8) set javaOuterClassname($core.String value) => $_setString(1, value); @$pb.TagNumber(8) $core.bool hasJavaOuterClassname() => $_has(1); @$pb.TagNumber(8) void clearJavaOuterClassname() => $_clearField(8); @$pb.TagNumber(9) FileOptions_OptimizeMode get optimizeFor => $_getN(2); @$pb.TagNumber(9) set optimizeFor(FileOptions_OptimizeMode value) => $_setField(9, value); @$pb.TagNumber(9) $core.bool hasOptimizeFor() => $_has(2); @$pb.TagNumber(9) void clearOptimizeFor() => $_clearField(9); /// If set true, then the Java code generator will generate a separate .java /// file for each top-level message, enum, and service defined in the .proto /// file. Thus, these types will *not* be nested inside the outer class /// named by java_outer_classname. However, the outer class will still be /// generated to contain the file's getDescriptor() method as well as any /// top-level extensions defined in the file. @$pb.TagNumber(10) $core.bool get javaMultipleFiles => $_getBF(3); @$pb.TagNumber(10) set javaMultipleFiles($core.bool value) => $_setBool(3, value); @$pb.TagNumber(10) $core.bool hasJavaMultipleFiles() => $_has(3); @$pb.TagNumber(10) void clearJavaMultipleFiles() => $_clearField(10); /// Sets the Go package where structs generated from this .proto will be /// placed. If omitted, the Go package will be derived from the following: /// - The basename of the package import path, if provided. /// - Otherwise, the package statement in the .proto file, if present. /// - Otherwise, the basename of the .proto file, without extension. @$pb.TagNumber(11) $core.String get goPackage => $_getSZ(4); @$pb.TagNumber(11) set goPackage($core.String value) => $_setString(4, value); @$pb.TagNumber(11) $core.bool hasGoPackage() => $_has(4); @$pb.TagNumber(11) void clearGoPackage() => $_clearField(11); /// Should generic services be generated in each language? "Generic" services /// are not specific to any particular RPC system. They are generated by the /// main code generators in each language (without additional plugins). /// Generic services were the only kind of service generation supported by /// early versions of google.protobuf. /// /// Generic services are now considered deprecated in favor of using plugins /// that generate code specific to your particular RPC system. Therefore, /// these default to false. Old code which depends on generic services should /// explicitly set them to true. @$pb.TagNumber(16) $core.bool get ccGenericServices => $_getBF(5); @$pb.TagNumber(16) set ccGenericServices($core.bool value) => $_setBool(5, value); @$pb.TagNumber(16) $core.bool hasCcGenericServices() => $_has(5); @$pb.TagNumber(16) void clearCcGenericServices() => $_clearField(16); @$pb.TagNumber(17) $core.bool get javaGenericServices => $_getBF(6); @$pb.TagNumber(17) set javaGenericServices($core.bool value) => $_setBool(6, value); @$pb.TagNumber(17) $core.bool hasJavaGenericServices() => $_has(6); @$pb.TagNumber(17) void clearJavaGenericServices() => $_clearField(17); @$pb.TagNumber(18) $core.bool get pyGenericServices => $_getBF(7); @$pb.TagNumber(18) set pyGenericServices($core.bool value) => $_setBool(7, value); @$pb.TagNumber(18) $core.bool hasPyGenericServices() => $_has(7); @$pb.TagNumber(18) void clearPyGenericServices() => $_clearField(18); /// This option does nothing. @$core.Deprecated('This field is deprecated.') @$pb.TagNumber(20) $core.bool get javaGenerateEqualsAndHash => $_getBF(8); @$core.Deprecated('This field is deprecated.') @$pb.TagNumber(20) set javaGenerateEqualsAndHash($core.bool value) => $_setBool(8, value); @$core.Deprecated('This field is deprecated.') @$pb.TagNumber(20) $core.bool hasJavaGenerateEqualsAndHash() => $_has(8); @$core.Deprecated('This field is deprecated.') @$pb.TagNumber(20) void clearJavaGenerateEqualsAndHash() => $_clearField(20); /// Is this file deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for everything in the file, or it will be completely ignored; in the very /// least, this is a formalization for deprecating files. @$pb.TagNumber(23) $core.bool get deprecated => $_getBF(9); @$pb.TagNumber(23) set deprecated($core.bool value) => $_setBool(9, value); @$pb.TagNumber(23) $core.bool hasDeprecated() => $_has(9); @$pb.TagNumber(23) void clearDeprecated() => $_clearField(23); /// If set true, then the Java2 code generator will generate code that /// throws an exception whenever an attempt is made to assign a non-UTF-8 /// byte sequence to a string field. /// Message reflection will do the same. /// However, an extension field still accepts non-UTF-8 byte sequences. /// This option has no effect on when used with the lite runtime. @$pb.TagNumber(27) $core.bool get javaStringCheckUtf8 => $_getBF(10); @$pb.TagNumber(27) set javaStringCheckUtf8($core.bool value) => $_setBool(10, value); @$pb.TagNumber(27) $core.bool hasJavaStringCheckUtf8() => $_has(10); @$pb.TagNumber(27) void clearJavaStringCheckUtf8() => $_clearField(27); /// Enables the use of arenas for the proto messages in this file. This applies /// only to generated classes for C++. @$pb.TagNumber(31) $core.bool get ccEnableArenas => $_getBF(11); @$pb.TagNumber(31) set ccEnableArenas($core.bool value) => $_setBool(11, value); @$pb.TagNumber(31) $core.bool hasCcEnableArenas() => $_has(11); @$pb.TagNumber(31) void clearCcEnableArenas() => $_clearField(31); /// Sets the objective c class prefix which is prepended to all objective c /// generated classes from this .proto. There is no default. @$pb.TagNumber(36) $core.String get objcClassPrefix => $_getSZ(12); @$pb.TagNumber(36) set objcClassPrefix($core.String value) => $_setString(12, value); @$pb.TagNumber(36) $core.bool hasObjcClassPrefix() => $_has(12); @$pb.TagNumber(36) void clearObjcClassPrefix() => $_clearField(36); /// Namespace for generated classes; defaults to the package. @$pb.TagNumber(37) $core.String get csharpNamespace => $_getSZ(13); @$pb.TagNumber(37) set csharpNamespace($core.String value) => $_setString(13, value); @$pb.TagNumber(37) $core.bool hasCsharpNamespace() => $_has(13); @$pb.TagNumber(37) void clearCsharpNamespace() => $_clearField(37); /// By default Swift generators will take the proto package and CamelCase it /// replacing '.' with underscore and use that to prefix the types/symbols /// defined. When this options is provided, they will use this value instead /// to prefix the types/symbols defined. @$pb.TagNumber(39) $core.String get swiftPrefix => $_getSZ(14); @$pb.TagNumber(39) set swiftPrefix($core.String value) => $_setString(14, value); @$pb.TagNumber(39) $core.bool hasSwiftPrefix() => $_has(14); @$pb.TagNumber(39) void clearSwiftPrefix() => $_clearField(39); /// Sets the php class prefix which is prepended to all php generated classes /// from this .proto. Default is empty. @$pb.TagNumber(40) $core.String get phpClassPrefix => $_getSZ(15); @$pb.TagNumber(40) set phpClassPrefix($core.String value) => $_setString(15, value); @$pb.TagNumber(40) $core.bool hasPhpClassPrefix() => $_has(15); @$pb.TagNumber(40) void clearPhpClassPrefix() => $_clearField(40); /// Use this option to change the namespace of php generated classes. Default /// is empty. When this option is empty, the package name will be used for /// determining the namespace. @$pb.TagNumber(41) $core.String get phpNamespace => $_getSZ(16); @$pb.TagNumber(41) set phpNamespace($core.String value) => $_setString(16, value); @$pb.TagNumber(41) $core.bool hasPhpNamespace() => $_has(16); @$pb.TagNumber(41) void clearPhpNamespace() => $_clearField(41); @$pb.TagNumber(42) $core.bool get phpGenericServices => $_getBF(17); @$pb.TagNumber(42) set phpGenericServices($core.bool value) => $_setBool(17, value); @$pb.TagNumber(42) $core.bool hasPhpGenericServices() => $_has(17); @$pb.TagNumber(42) void clearPhpGenericServices() => $_clearField(42); /// Use this option to change the namespace of php generated metadata classes. /// Default is empty. When this option is empty, the proto file name will be /// used for determining the namespace. @$pb.TagNumber(44) $core.String get phpMetadataNamespace => $_getSZ(18); @$pb.TagNumber(44) set phpMetadataNamespace($core.String value) => $_setString(18, value); @$pb.TagNumber(44) $core.bool hasPhpMetadataNamespace() => $_has(18); @$pb.TagNumber(44) void clearPhpMetadataNamespace() => $_clearField(44); /// Use this option to change the package of ruby generated classes. Default /// is empty. When this option is not set, the package name will be used for /// determining the ruby package. @$pb.TagNumber(45) $core.String get rubyPackage => $_getSZ(19); @$pb.TagNumber(45) set rubyPackage($core.String value) => $_setString(19, value); @$pb.TagNumber(45) $core.bool hasRubyPackage() => $_has(19); @$pb.TagNumber(45) void clearRubyPackage() => $_clearField(45); /// The parser stores options it doesn't recognize here. /// See the documentation for the "Options" section above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(20); } class MessageOptions extends $pb.GeneratedMessage { factory MessageOptions({ $core.bool? messageSetWireFormat, $core.bool? noStandardDescriptorAccessor, $core.bool? deprecated, $core.bool? mapEntry, $core.Iterable? uninterpretedOption, }) { final result = create(); if (messageSetWireFormat != null) result.messageSetWireFormat = messageSetWireFormat; if (noStandardDescriptorAccessor != null) result.noStandardDescriptorAccessor = noStandardDescriptorAccessor; if (deprecated != null) result.deprecated = deprecated; if (mapEntry != null) result.mapEntry = mapEntry; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } MessageOptions._(); factory MessageOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory MessageOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MessageOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOB(1, _omitFieldNames ? '' : 'messageSetWireFormat') ..aOB(2, _omitFieldNames ? '' : 'noStandardDescriptorAccessor') ..aOB(3, _omitFieldNames ? '' : 'deprecated') ..aOB(7, _omitFieldNames ? '' : 'mapEntry') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MessageOptions clone() => MessageOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MessageOptions copyWith(void Function(MessageOptions) updates) => super.copyWith((message) => updates(message as MessageOptions)) as MessageOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static MessageOptions create() => MessageOptions._(); @$core.override MessageOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static MessageOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static MessageOptions? _defaultInstance; /// Set true to use the old proto1 MessageSet wire format for extensions. /// This is provided for backwards-compatibility with the MessageSet wire /// format. You should not use this for any other reason: It's less /// efficient, has fewer features, and is more complicated. /// /// The message must be defined exactly as follows: /// message Foo { /// option message_set_wire_format = true; /// extensions 4 to max; /// } /// Note that the message cannot have any defined fields; MessageSets only /// have extensions. /// /// All extensions of your type must be singular messages; e.g. they cannot /// be int32s, enums, or repeated messages. /// /// Because this is an option, the above two restrictions are not enforced by /// the protocol compiler. @$pb.TagNumber(1) $core.bool get messageSetWireFormat => $_getBF(0); @$pb.TagNumber(1) set messageSetWireFormat($core.bool value) => $_setBool(0, value); @$pb.TagNumber(1) $core.bool hasMessageSetWireFormat() => $_has(0); @$pb.TagNumber(1) void clearMessageSetWireFormat() => $_clearField(1); /// Disables the generation of the standard "descriptor()" accessor, which can /// conflict with a field of the same name. This is meant to make migration /// from proto1 easier; new code should avoid fields named "descriptor". @$pb.TagNumber(2) $core.bool get noStandardDescriptorAccessor => $_getBF(1); @$pb.TagNumber(2) set noStandardDescriptorAccessor($core.bool value) => $_setBool(1, value); @$pb.TagNumber(2) $core.bool hasNoStandardDescriptorAccessor() => $_has(1); @$pb.TagNumber(2) void clearNoStandardDescriptorAccessor() => $_clearField(2); /// Is this message deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for the message, or it will be completely ignored; in the very least, /// this is a formalization for deprecating messages. @$pb.TagNumber(3) $core.bool get deprecated => $_getBF(2); @$pb.TagNumber(3) set deprecated($core.bool value) => $_setBool(2, value); @$pb.TagNumber(3) $core.bool hasDeprecated() => $_has(2); @$pb.TagNumber(3) void clearDeprecated() => $_clearField(3); /// Whether the message is an automatically generated map entry type for the /// maps field. /// /// For maps fields: /// map map_field = 1; /// The parsed descriptor looks like: /// message MapFieldEntry { /// option map_entry = true; /// optional KeyType key = 1; /// optional ValueType value = 2; /// } /// repeated MapFieldEntry map_field = 1; /// /// Implementations may choose not to generate the map_entry=true message, but /// use a native map in the target language to hold the keys and values. /// The reflection APIs in such implementations still need to work as /// if the field is a repeated message field. /// /// NOTE: Do not set the option in .proto files. Always use the maps syntax /// instead. The option should only be implicitly set by the proto compiler /// parser. @$pb.TagNumber(7) $core.bool get mapEntry => $_getBF(3); @$pb.TagNumber(7) set mapEntry($core.bool value) => $_setBool(3, value); @$pb.TagNumber(7) $core.bool hasMapEntry() => $_has(3); @$pb.TagNumber(7) void clearMapEntry() => $_clearField(7); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(4); } class FieldOptions extends $pb.GeneratedMessage { factory FieldOptions({ FieldOptions_CType? ctype, $core.bool? packed, $core.bool? deprecated, $core.bool? lazy, FieldOptions_JSType? jstype, $core.bool? weak, $core.Iterable? uninterpretedOption, }) { final result = create(); if (ctype != null) result.ctype = ctype; if (packed != null) result.packed = packed; if (deprecated != null) result.deprecated = deprecated; if (lazy != null) result.lazy = lazy; if (jstype != null) result.jstype = jstype; if (weak != null) result.weak = weak; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } FieldOptions._(); factory FieldOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory FieldOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FieldOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..e(1, _omitFieldNames ? '' : 'ctype', $pb.PbFieldType.OE, defaultOrMaker: FieldOptions_CType.STRING, valueOf: FieldOptions_CType.valueOf, enumValues: FieldOptions_CType.values) ..aOB(2, _omitFieldNames ? '' : 'packed') ..aOB(3, _omitFieldNames ? '' : 'deprecated') ..aOB(5, _omitFieldNames ? '' : 'lazy') ..e(6, _omitFieldNames ? '' : 'jstype', $pb.PbFieldType.OE, defaultOrMaker: FieldOptions_JSType.JS_NORMAL, valueOf: FieldOptions_JSType.valueOf, enumValues: FieldOptions_JSType.values) ..aOB(10, _omitFieldNames ? '' : 'weak') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FieldOptions clone() => FieldOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FieldOptions copyWith(void Function(FieldOptions) updates) => super.copyWith((message) => updates(message as FieldOptions)) as FieldOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static FieldOptions create() => FieldOptions._(); @$core.override FieldOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FieldOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static FieldOptions? _defaultInstance; /// The ctype option instructs the C++ code generator to use a different /// representation of the field than it normally would. See the specific /// options below. This option is not yet implemented in the open source /// release -- sorry, we'll try to include it in a future version! @$pb.TagNumber(1) FieldOptions_CType get ctype => $_getN(0); @$pb.TagNumber(1) set ctype(FieldOptions_CType value) => $_setField(1, value); @$pb.TagNumber(1) $core.bool hasCtype() => $_has(0); @$pb.TagNumber(1) void clearCtype() => $_clearField(1); /// The packed option can be enabled for repeated primitive fields to enable /// a more efficient representation on the wire. Rather than repeatedly /// writing the tag and type for each element, the entire array is encoded as /// a single length-delimited blob. In proto3, only explicit setting it to /// false will avoid using packed encoding. @$pb.TagNumber(2) $core.bool get packed => $_getBF(1); @$pb.TagNumber(2) set packed($core.bool value) => $_setBool(1, value); @$pb.TagNumber(2) $core.bool hasPacked() => $_has(1); @$pb.TagNumber(2) void clearPacked() => $_clearField(2); /// Is this field deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for accessors, or it will be completely ignored; in the very least, this /// is a formalization for deprecating fields. @$pb.TagNumber(3) $core.bool get deprecated => $_getBF(2); @$pb.TagNumber(3) set deprecated($core.bool value) => $_setBool(2, value); @$pb.TagNumber(3) $core.bool hasDeprecated() => $_has(2); @$pb.TagNumber(3) void clearDeprecated() => $_clearField(3); /// Should this field be parsed lazily? Lazy applies only to message-type /// fields. It means that when the outer message is initially parsed, the /// inner message's contents will not be parsed but instead stored in encoded /// form. The inner message will actually be parsed when it is first accessed. /// /// This is only a hint. Implementations are free to choose whether to use /// eager or lazy parsing regardless of the value of this option. However, /// setting this option true suggests that the protocol author believes that /// using lazy parsing on this field is worth the additional bookkeeping /// overhead typically needed to implement it. /// /// This option does not affect the public interface of any generated code; /// all method signatures remain the same. Furthermore, thread-safety of the /// interface is not affected by this option; const methods remain safe to /// call from multiple threads concurrently, while non-const methods continue /// to require exclusive access. /// /// /// Note that implementations may choose not to check required fields within /// a lazy sub-message. That is, calling IsInitialized() on the outer message /// may return true even if the inner message has missing required fields. /// This is necessary because otherwise the inner message would have to be /// parsed in order to perform the check, defeating the purpose of lazy /// parsing. An implementation which chooses not to check required fields /// must be consistent about it. That is, for any particular sub-message, the /// implementation must either *always* check its required fields, or *never* /// check its required fields, regardless of whether or not the message has /// been parsed. @$pb.TagNumber(5) $core.bool get lazy => $_getBF(3); @$pb.TagNumber(5) set lazy($core.bool value) => $_setBool(3, value); @$pb.TagNumber(5) $core.bool hasLazy() => $_has(3); @$pb.TagNumber(5) void clearLazy() => $_clearField(5); /// The jstype option determines the JavaScript type used for values of the /// field. The option is permitted only for 64 bit integral and fixed types /// (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING /// is represented as JavaScript string, which avoids loss of precision that /// can happen when a large value is converted to a floating point JavaScript. /// Specifying JS_NUMBER for the jstype causes the generated JavaScript code to /// use the JavaScript "number" type. The behavior of the default option /// JS_NORMAL is implementation dependent. /// /// This option is an enum to permit additional types to be added, e.g. /// goog.math.Integer. @$pb.TagNumber(6) FieldOptions_JSType get jstype => $_getN(4); @$pb.TagNumber(6) set jstype(FieldOptions_JSType value) => $_setField(6, value); @$pb.TagNumber(6) $core.bool hasJstype() => $_has(4); @$pb.TagNumber(6) void clearJstype() => $_clearField(6); /// For Google-internal migration only. Do not use. @$pb.TagNumber(10) $core.bool get weak => $_getBF(5); @$pb.TagNumber(10) set weak($core.bool value) => $_setBool(5, value); @$pb.TagNumber(10) $core.bool hasWeak() => $_has(5); @$pb.TagNumber(10) void clearWeak() => $_clearField(10); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(6); } class OneofOptions extends $pb.GeneratedMessage { factory OneofOptions({ $core.Iterable? uninterpretedOption, }) { final result = create(); if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } OneofOptions._(); factory OneofOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory OneofOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OneofOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') OneofOptions clone() => OneofOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') OneofOptions copyWith(void Function(OneofOptions) updates) => super.copyWith((message) => updates(message as OneofOptions)) as OneofOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static OneofOptions create() => OneofOptions._(); @$core.override OneofOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static OneofOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static OneofOptions? _defaultInstance; /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(0); } class EnumOptions extends $pb.GeneratedMessage { factory EnumOptions({ $core.bool? allowAlias, $core.bool? deprecated, $core.Iterable? uninterpretedOption, }) { final result = create(); if (allowAlias != null) result.allowAlias = allowAlias; if (deprecated != null) result.deprecated = deprecated; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } EnumOptions._(); factory EnumOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory EnumOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOB(2, _omitFieldNames ? '' : 'allowAlias') ..aOB(3, _omitFieldNames ? '' : 'deprecated') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumOptions clone() => EnumOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumOptions copyWith(void Function(EnumOptions) updates) => super.copyWith((message) => updates(message as EnumOptions)) as EnumOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static EnumOptions create() => EnumOptions._(); @$core.override EnumOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static EnumOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static EnumOptions? _defaultInstance; /// Set this option to true to allow mapping different tag names to the same /// value. @$pb.TagNumber(2) $core.bool get allowAlias => $_getBF(0); @$pb.TagNumber(2) set allowAlias($core.bool value) => $_setBool(0, value); @$pb.TagNumber(2) $core.bool hasAllowAlias() => $_has(0); @$pb.TagNumber(2) void clearAllowAlias() => $_clearField(2); /// Is this enum deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for the enum, or it will be completely ignored; in the very least, this /// is a formalization for deprecating enums. @$pb.TagNumber(3) $core.bool get deprecated => $_getBF(1); @$pb.TagNumber(3) set deprecated($core.bool value) => $_setBool(1, value); @$pb.TagNumber(3) $core.bool hasDeprecated() => $_has(1); @$pb.TagNumber(3) void clearDeprecated() => $_clearField(3); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(2); } class EnumValueOptions extends $pb.GeneratedMessage { factory EnumValueOptions({ $core.bool? deprecated, $core.Iterable? uninterpretedOption, }) { final result = create(); if (deprecated != null) result.deprecated = deprecated; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } EnumValueOptions._(); factory EnumValueOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory EnumValueOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumValueOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOB(1, _omitFieldNames ? '' : 'deprecated') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumValueOptions clone() => EnumValueOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') EnumValueOptions copyWith(void Function(EnumValueOptions) updates) => super.copyWith((message) => updates(message as EnumValueOptions)) as EnumValueOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static EnumValueOptions create() => EnumValueOptions._(); @$core.override EnumValueOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static EnumValueOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static EnumValueOptions? _defaultInstance; /// Is this enum value deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for the enum value, or it will be completely ignored; in the very least, /// this is a formalization for deprecating enum values. @$pb.TagNumber(1) $core.bool get deprecated => $_getBF(0); @$pb.TagNumber(1) set deprecated($core.bool value) => $_setBool(0, value); @$pb.TagNumber(1) $core.bool hasDeprecated() => $_has(0); @$pb.TagNumber(1) void clearDeprecated() => $_clearField(1); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(1); } class ServiceOptions extends $pb.GeneratedMessage { factory ServiceOptions({ $core.bool? deprecated, $core.Iterable? uninterpretedOption, }) { final result = create(); if (deprecated != null) result.deprecated = deprecated; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } ServiceOptions._(); factory ServiceOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory ServiceOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ServiceOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOB(33, _omitFieldNames ? '' : 'deprecated') ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ServiceOptions clone() => ServiceOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') ServiceOptions copyWith(void Function(ServiceOptions) updates) => super.copyWith((message) => updates(message as ServiceOptions)) as ServiceOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static ServiceOptions create() => ServiceOptions._(); @$core.override ServiceOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static ServiceOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static ServiceOptions? _defaultInstance; /// Is this service deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for the service, or it will be completely ignored; in the very least, /// this is a formalization for deprecating services. @$pb.TagNumber(33) $core.bool get deprecated => $_getBF(0); @$pb.TagNumber(33) set deprecated($core.bool value) => $_setBool(0, value); @$pb.TagNumber(33) $core.bool hasDeprecated() => $_has(0); @$pb.TagNumber(33) void clearDeprecated() => $_clearField(33); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(1); } class MethodOptions extends $pb.GeneratedMessage { factory MethodOptions({ $core.bool? deprecated, MethodOptions_IdempotencyLevel? idempotencyLevel, $core.Iterable? uninterpretedOption, }) { final result = create(); if (deprecated != null) result.deprecated = deprecated; if (idempotencyLevel != null) result.idempotencyLevel = idempotencyLevel; if (uninterpretedOption != null) result.uninterpretedOption.addAll(uninterpretedOption); return result; } MethodOptions._(); factory MethodOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory MethodOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MethodOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aOB(33, _omitFieldNames ? '' : 'deprecated') ..e(34, _omitFieldNames ? '' : 'idempotencyLevel', $pb.PbFieldType.OE, defaultOrMaker: MethodOptions_IdempotencyLevel.IDEMPOTENCY_UNKNOWN, valueOf: MethodOptions_IdempotencyLevel.valueOf, enumValues: MethodOptions_IdempotencyLevel.values) ..pc(999, _omitFieldNames ? '' : 'uninterpretedOption', $pb.PbFieldType.PM, subBuilder: UninterpretedOption.create) ..hasExtensions = true ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MethodOptions clone() => MethodOptions()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') MethodOptions copyWith(void Function(MethodOptions) updates) => super.copyWith((message) => updates(message as MethodOptions)) as MethodOptions; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static MethodOptions create() => MethodOptions._(); @$core.override MethodOptions createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static MethodOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static MethodOptions? _defaultInstance; /// Is this method deprecated? /// Depending on the target platform, this can emit Deprecated annotations /// for the method, or it will be completely ignored; in the very least, /// this is a formalization for deprecating methods. @$pb.TagNumber(33) $core.bool get deprecated => $_getBF(0); @$pb.TagNumber(33) set deprecated($core.bool value) => $_setBool(0, value); @$pb.TagNumber(33) $core.bool hasDeprecated() => $_has(0); @$pb.TagNumber(33) void clearDeprecated() => $_clearField(33); @$pb.TagNumber(34) MethodOptions_IdempotencyLevel get idempotencyLevel => $_getN(1); @$pb.TagNumber(34) set idempotencyLevel(MethodOptions_IdempotencyLevel value) => $_setField(34, value); @$pb.TagNumber(34) $core.bool hasIdempotencyLevel() => $_has(1); @$pb.TagNumber(34) void clearIdempotencyLevel() => $_clearField(34); /// The parser stores options it doesn't recognize here. See above. @$pb.TagNumber(999) $pb.PbList get uninterpretedOption => $_getList(2); } /// The name of the uninterpreted option. Each string represents a segment in /// a dot-separated name. is_extension is true iff a segment represents an /// extension (denoted with parentheses in options specs in .proto files). /// E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents /// "foo.(bar.baz).qux". class UninterpretedOption_NamePart extends $pb.GeneratedMessage { factory UninterpretedOption_NamePart({ $core.String? namePart, $core.bool? isExtension, }) { final result = create(); if (namePart != null) result.namePart = namePart; if (isExtension != null) result.isExtension = isExtension; return result; } UninterpretedOption_NamePart._(); factory UninterpretedOption_NamePart.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory UninterpretedOption_NamePart.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UninterpretedOption.NamePart', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..aQS(1, _omitFieldNames ? '' : 'namePart') ..a<$core.bool>(2, _omitFieldNames ? '' : 'isExtension', $pb.PbFieldType.QB) ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') UninterpretedOption_NamePart clone() => UninterpretedOption_NamePart()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') UninterpretedOption_NamePart copyWith(void Function(UninterpretedOption_NamePart) updates) => super.copyWith((message) => updates(message as UninterpretedOption_NamePart)) as UninterpretedOption_NamePart; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static UninterpretedOption_NamePart create() => UninterpretedOption_NamePart._(); @$core.override UninterpretedOption_NamePart createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static UninterpretedOption_NamePart getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static UninterpretedOption_NamePart? _defaultInstance; @$pb.TagNumber(1) $core.String get namePart => $_getSZ(0); @$pb.TagNumber(1) set namePart($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasNamePart() => $_has(0); @$pb.TagNumber(1) void clearNamePart() => $_clearField(1); @$pb.TagNumber(2) $core.bool get isExtension => $_getBF(1); @$pb.TagNumber(2) set isExtension($core.bool value) => $_setBool(1, value); @$pb.TagNumber(2) $core.bool hasIsExtension() => $_has(1); @$pb.TagNumber(2) void clearIsExtension() => $_clearField(2); } /// A message representing a option the parser does not recognize. This only /// appears in options protos created by the compiler::Parser class. /// DescriptorPool resolves these when building Descriptor objects. Therefore, /// options protos in descriptor objects (e.g. returned by Descriptor::options(), /// or produced by Descriptor::CopyTo()) will never have UninterpretedOptions /// in them. class UninterpretedOption extends $pb.GeneratedMessage { factory UninterpretedOption({ $core.Iterable? name, $core.String? identifierValue, $fixnum.Int64? positiveIntValue, $fixnum.Int64? negativeIntValue, $core.double? doubleValue, $core.List<$core.int>? stringValue, $core.String? aggregateValue, }) { final result = create(); if (name != null) result.name.addAll(name); if (identifierValue != null) result.identifierValue = identifierValue; if (positiveIntValue != null) result.positiveIntValue = positiveIntValue; if (negativeIntValue != null) result.negativeIntValue = negativeIntValue; if (doubleValue != null) result.doubleValue = doubleValue; if (stringValue != null) result.stringValue = stringValue; if (aggregateValue != null) result.aggregateValue = aggregateValue; return result; } UninterpretedOption._(); factory UninterpretedOption.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory UninterpretedOption.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UninterpretedOption', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(2, _omitFieldNames ? '' : 'name', $pb.PbFieldType.PM, subBuilder: UninterpretedOption_NamePart.create) ..aOS(3, _omitFieldNames ? '' : 'identifierValue') ..a<$fixnum.Int64>(4, _omitFieldNames ? '' : 'positiveIntValue', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO) ..aInt64(5, _omitFieldNames ? '' : 'negativeIntValue') ..a<$core.double>(6, _omitFieldNames ? '' : 'doubleValue', $pb.PbFieldType.OD) ..a<$core.List<$core.int>>(7, _omitFieldNames ? '' : 'stringValue', $pb.PbFieldType.OY) ..aOS(8, _omitFieldNames ? '' : 'aggregateValue') ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') UninterpretedOption clone() => UninterpretedOption()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') UninterpretedOption copyWith(void Function(UninterpretedOption) updates) => super.copyWith((message) => updates(message as UninterpretedOption)) as UninterpretedOption; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static UninterpretedOption create() => UninterpretedOption._(); @$core.override UninterpretedOption createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static UninterpretedOption getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static UninterpretedOption? _defaultInstance; @$pb.TagNumber(2) $pb.PbList get name => $_getList(0); /// The value of the uninterpreted option, in whatever type the tokenizer /// identified it as during parsing. Exactly one of these should be set. @$pb.TagNumber(3) $core.String get identifierValue => $_getSZ(1); @$pb.TagNumber(3) set identifierValue($core.String value) => $_setString(1, value); @$pb.TagNumber(3) $core.bool hasIdentifierValue() => $_has(1); @$pb.TagNumber(3) void clearIdentifierValue() => $_clearField(3); @$pb.TagNumber(4) $fixnum.Int64 get positiveIntValue => $_getI64(2); @$pb.TagNumber(4) set positiveIntValue($fixnum.Int64 value) => $_setInt64(2, value); @$pb.TagNumber(4) $core.bool hasPositiveIntValue() => $_has(2); @$pb.TagNumber(4) void clearPositiveIntValue() => $_clearField(4); @$pb.TagNumber(5) $fixnum.Int64 get negativeIntValue => $_getI64(3); @$pb.TagNumber(5) set negativeIntValue($fixnum.Int64 value) => $_setInt64(3, value); @$pb.TagNumber(5) $core.bool hasNegativeIntValue() => $_has(3); @$pb.TagNumber(5) void clearNegativeIntValue() => $_clearField(5); @$pb.TagNumber(6) $core.double get doubleValue => $_getN(4); @$pb.TagNumber(6) set doubleValue($core.double value) => $_setDouble(4, value); @$pb.TagNumber(6) $core.bool hasDoubleValue() => $_has(4); @$pb.TagNumber(6) void clearDoubleValue() => $_clearField(6); @$pb.TagNumber(7) $core.List<$core.int> get stringValue => $_getN(5); @$pb.TagNumber(7) set stringValue($core.List<$core.int> value) => $_setBytes(5, value); @$pb.TagNumber(7) $core.bool hasStringValue() => $_has(5); @$pb.TagNumber(7) void clearStringValue() => $_clearField(7); @$pb.TagNumber(8) $core.String get aggregateValue => $_getSZ(6); @$pb.TagNumber(8) set aggregateValue($core.String value) => $_setString(6, value); @$pb.TagNumber(8) $core.bool hasAggregateValue() => $_has(6); @$pb.TagNumber(8) void clearAggregateValue() => $_clearField(8); } class SourceCodeInfo_Location extends $pb.GeneratedMessage { factory SourceCodeInfo_Location({ $core.Iterable<$core.int>? path, $core.Iterable<$core.int>? span, $core.String? leadingComments, $core.String? trailingComments, $core.Iterable<$core.String>? leadingDetachedComments, }) { final result = create(); if (path != null) result.path.addAll(path); if (span != null) result.span.addAll(span); if (leadingComments != null) result.leadingComments = leadingComments; if (trailingComments != null) result.trailingComments = trailingComments; if (leadingDetachedComments != null) result.leadingDetachedComments.addAll(leadingDetachedComments); return result; } SourceCodeInfo_Location._(); factory SourceCodeInfo_Location.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory SourceCodeInfo_Location.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SourceCodeInfo.Location', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..p<$core.int>(1, _omitFieldNames ? '' : 'path', $pb.PbFieldType.K3) ..p<$core.int>(2, _omitFieldNames ? '' : 'span', $pb.PbFieldType.K3) ..aOS(3, _omitFieldNames ? '' : 'leadingComments') ..aOS(4, _omitFieldNames ? '' : 'trailingComments') ..pPS(6, _omitFieldNames ? '' : 'leadingDetachedComments') ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') SourceCodeInfo_Location clone() => SourceCodeInfo_Location()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') SourceCodeInfo_Location copyWith(void Function(SourceCodeInfo_Location) updates) => super.copyWith((message) => updates(message as SourceCodeInfo_Location)) as SourceCodeInfo_Location; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static SourceCodeInfo_Location create() => SourceCodeInfo_Location._(); @$core.override SourceCodeInfo_Location createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static SourceCodeInfo_Location getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static SourceCodeInfo_Location? _defaultInstance; /// Identifies which part of the FileDescriptorProto was defined at this /// location. /// /// Each element is a field number or an index. They form a path from /// the root FileDescriptorProto to the place where the definition. For /// example, this path: /// [ 4, 3, 2, 7, 1 ] /// refers to: /// file.message_type(3) // 4, 3 /// .field(7) // 2, 7 /// .name() // 1 /// This is because FileDescriptorProto.message_type has field number 4: /// repeated DescriptorProto message_type = 4; /// and DescriptorProto.field has field number 2: /// repeated FieldDescriptorProto field = 2; /// and FieldDescriptorProto.name has field number 1: /// optional string name = 1; /// /// Thus, the above path gives the location of a field name. If we removed /// the last element: /// [ 4, 3, 2, 7 ] /// this path refers to the whole field declaration (from the beginning /// of the label to the terminating semicolon). @$pb.TagNumber(1) $pb.PbList<$core.int> get path => $_getList(0); /// Always has exactly three or four elements: start line, start column, /// end line (optional, otherwise assumed same as start line), end column. /// These are packed into a single field for efficiency. Note that line /// and column numbers are zero-based -- typically you will want to add /// 1 to each before displaying to a user. @$pb.TagNumber(2) $pb.PbList<$core.int> get span => $_getList(1); /// If this SourceCodeInfo represents a complete declaration, these are any /// comments appearing before and after the declaration which appear to be /// attached to the declaration. /// /// A series of line comments appearing on consecutive lines, with no other /// tokens appearing on those lines, will be treated as a single comment. /// /// leading_detached_comments will keep paragraphs of comments that appear /// before (but not connected to) the current element. Each paragraph, /// separated by empty lines, will be one comment element in the repeated /// field. /// /// Only the comment content is provided; comment markers (e.g. //) are /// stripped out. For block comments, leading whitespace and an asterisk /// will be stripped from the beginning of each line other than the first. /// Newlines are included in the output. /// /// Examples: /// /// optional int32 foo = 1; // Comment attached to foo. /// // Comment attached to bar. /// optional int32 bar = 2; /// /// optional string baz = 3; /// // Comment attached to baz. /// // Another line attached to baz. /// /// // Comment attached to qux. /// // /// // Another line attached to qux. /// optional double qux = 4; /// /// // Detached comment for corge. This is not leading or trailing comments /// // to qux or corge because there are blank lines separating it from /// // both. /// /// // Detached comment for corge paragraph 2. /// /// optional string corge = 5; /// /* Block comment attached /// * to corge. Leading asterisks /// * will be removed. */ /// /* Block comment attached to /// * grault. */ /// optional int32 grault = 6; /// /// // ignored detached comments. @$pb.TagNumber(3) $core.String get leadingComments => $_getSZ(2); @$pb.TagNumber(3) set leadingComments($core.String value) => $_setString(2, value); @$pb.TagNumber(3) $core.bool hasLeadingComments() => $_has(2); @$pb.TagNumber(3) void clearLeadingComments() => $_clearField(3); @$pb.TagNumber(4) $core.String get trailingComments => $_getSZ(3); @$pb.TagNumber(4) set trailingComments($core.String value) => $_setString(3, value); @$pb.TagNumber(4) $core.bool hasTrailingComments() => $_has(3); @$pb.TagNumber(4) void clearTrailingComments() => $_clearField(4); @$pb.TagNumber(6) $pb.PbList<$core.String> get leadingDetachedComments => $_getList(4); } /// Encapsulates information about the original source file from which a /// FileDescriptorProto was generated. class SourceCodeInfo extends $pb.GeneratedMessage { factory SourceCodeInfo({ $core.Iterable? location, }) { final result = create(); if (location != null) result.location.addAll(location); return result; } SourceCodeInfo._(); factory SourceCodeInfo.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory SourceCodeInfo.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SourceCodeInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(1, _omitFieldNames ? '' : 'location', $pb.PbFieldType.PM, subBuilder: SourceCodeInfo_Location.create) ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') SourceCodeInfo clone() => SourceCodeInfo()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') SourceCodeInfo copyWith(void Function(SourceCodeInfo) updates) => super.copyWith((message) => updates(message as SourceCodeInfo)) as SourceCodeInfo; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static SourceCodeInfo create() => SourceCodeInfo._(); @$core.override SourceCodeInfo createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static SourceCodeInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static SourceCodeInfo? _defaultInstance; /// A Location identifies a piece of source code in a .proto file which /// corresponds to a particular definition. This information is intended /// to be useful to IDEs, code indexers, documentation generators, and similar /// tools. /// /// For example, say we have a file like: /// message Foo { /// optional string foo = 1; /// } /// Let's look at just the field definition: /// optional string foo = 1; /// ^ ^^ ^^ ^ ^^^ /// a bc de f ghi /// We have the following locations: /// span path represents /// [a,i) [ 4, 0, 2, 0 ] The whole field definition. /// [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). /// [c,d) [ 4, 0, 2, 0, 5 ] The type (string). /// [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). /// [g,h) [ 4, 0, 2, 0, 3 ] The number (1). /// /// Notes: /// - A location may refer to a repeated field itself (i.e. not to any /// particular index within it). This is used whenever a set of elements are /// logically enclosed in a single code segment. For example, an entire /// extend block (possibly containing multiple extension definitions) will /// have an outer location whose path refers to the "extensions" repeated /// field without an index. /// - Multiple locations may have the same path. This happens when a single /// logical declaration is spread out across multiple places. The most /// obvious example is the "extend" block again -- there may be multiple /// extend blocks in the same scope, each of which will have the same path. /// - A location's span is not always a subset of its parent's span. For /// example, the "extendee" of an extension declaration appears at the /// beginning of the "extend" block and is shared by all extensions within /// the block. /// - Just because a location's span is a subset of some other location's span /// does not mean that it is a descendant. For example, a "group" defines /// both a type and a field in a single declaration. Thus, the locations /// corresponding to the type and field and their components will overlap. /// - Code which tries to interpret locations should probably be designed to /// ignore those that it doesn't understand, as more types of locations could /// be recorded in the future. @$pb.TagNumber(1) $pb.PbList get location => $_getList(0); } class GeneratedCodeInfo_Annotation extends $pb.GeneratedMessage { factory GeneratedCodeInfo_Annotation({ $core.Iterable<$core.int>? path, $core.String? sourceFile, $core.int? begin, $core.int? end, }) { final result = create(); if (path != null) result.path.addAll(path); if (sourceFile != null) result.sourceFile = sourceFile; if (begin != null) result.begin = begin; if (end != null) result.end = end; return result; } GeneratedCodeInfo_Annotation._(); factory GeneratedCodeInfo_Annotation.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory GeneratedCodeInfo_Annotation.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GeneratedCodeInfo.Annotation', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..p<$core.int>(1, _omitFieldNames ? '' : 'path', $pb.PbFieldType.K3) ..aOS(2, _omitFieldNames ? '' : 'sourceFile') ..a<$core.int>(3, _omitFieldNames ? '' : 'begin', $pb.PbFieldType.O3) ..a<$core.int>(4, _omitFieldNames ? '' : 'end', $pb.PbFieldType.O3) ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') GeneratedCodeInfo_Annotation clone() => GeneratedCodeInfo_Annotation()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') GeneratedCodeInfo_Annotation copyWith(void Function(GeneratedCodeInfo_Annotation) updates) => super.copyWith((message) => updates(message as GeneratedCodeInfo_Annotation)) as GeneratedCodeInfo_Annotation; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static GeneratedCodeInfo_Annotation create() => GeneratedCodeInfo_Annotation._(); @$core.override GeneratedCodeInfo_Annotation createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static GeneratedCodeInfo_Annotation getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static GeneratedCodeInfo_Annotation? _defaultInstance; /// Identifies the element in the original source .proto file. This field /// is formatted the same as SourceCodeInfo.Location.path. @$pb.TagNumber(1) $pb.PbList<$core.int> get path => $_getList(0); /// Identifies the filesystem path to the original source .proto. @$pb.TagNumber(2) $core.String get sourceFile => $_getSZ(1); @$pb.TagNumber(2) set sourceFile($core.String value) => $_setString(1, value); @$pb.TagNumber(2) $core.bool hasSourceFile() => $_has(1); @$pb.TagNumber(2) void clearSourceFile() => $_clearField(2); /// Identifies the starting offset in bytes in the generated code /// that relates to the identified object. @$pb.TagNumber(3) $core.int get begin => $_getIZ(2); @$pb.TagNumber(3) set begin($core.int value) => $_setSignedInt32(2, value); @$pb.TagNumber(3) $core.bool hasBegin() => $_has(2); @$pb.TagNumber(3) void clearBegin() => $_clearField(3); /// Identifies the ending offset in bytes in the generated code that /// relates to the identified offset. The end offset should be one past /// the last relevant byte (so the length of the text = end - begin). @$pb.TagNumber(4) $core.int get end => $_getIZ(3); @$pb.TagNumber(4) set end($core.int value) => $_setSignedInt32(3, value); @$pb.TagNumber(4) $core.bool hasEnd() => $_has(3); @$pb.TagNumber(4) void clearEnd() => $_clearField(4); } /// Describes the relationship between generated code and its original source /// file. A GeneratedCodeInfo message is associated with only one generated /// source file, but may contain references to different source .proto files. class GeneratedCodeInfo extends $pb.GeneratedMessage { factory GeneratedCodeInfo({ $core.Iterable? annotation, }) { final result = create(); if (annotation != null) result.annotation.addAll(annotation); return result; } GeneratedCodeInfo._(); factory GeneratedCodeInfo.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory GeneratedCodeInfo.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GeneratedCodeInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf'), createEmptyInstance: create) ..pc(1, _omitFieldNames ? '' : 'annotation', $pb.PbFieldType.PM, subBuilder: GeneratedCodeInfo_Annotation.create) ..hasRequiredFields = false ; @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') GeneratedCodeInfo clone() => GeneratedCodeInfo()..mergeFromMessage(this); @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') GeneratedCodeInfo copyWith(void Function(GeneratedCodeInfo) updates) => super.copyWith((message) => updates(message as GeneratedCodeInfo)) as GeneratedCodeInfo; @$core.override $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static GeneratedCodeInfo create() => GeneratedCodeInfo._(); @$core.override GeneratedCodeInfo createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static GeneratedCodeInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static GeneratedCodeInfo? _defaultInstance; /// An Annotation connects some span of text in generated code to an element /// of its generating .proto file. @$pb.TagNumber(1) $pb.PbList get annotation => $_getList(0); } const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');