You've already forked dart-core-sdk
496 lines
24 KiB
Dart
496 lines
24 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from handlingunitQuery.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:protobuf/protobuf.dart' as $pb;
|
|
|
|
import 'handlingunit.pb.dart' as $3;
|
|
import 'shared.pb.dart' as $1;
|
|
|
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|
|
|
class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
|
factory HandlingunitByIdQuery({
|
|
$1.QueryProjectHeader? header,
|
|
$core.Iterable<$1.QueryEntityID>? iDs,
|
|
HandlingunitQueryOptions? options,
|
|
}) {
|
|
final result = create();
|
|
if (header != null) result.header = header;
|
|
if (iDs != null) result.iDs.addAll(iDs);
|
|
if (options != null) result.options = options;
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByIdQuery._();
|
|
|
|
factory HandlingunitByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
|
..pc<$1.QueryEntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.QueryEntityID.create)
|
|
..aOM<HandlingunitQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: HandlingunitQueryOptions.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByIdQuery clone() => HandlingunitByIdQuery()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByIdQuery copyWith(void Function(HandlingunitByIdQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByIdQuery)) as HandlingunitByIdQuery;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByIdQuery create() => HandlingunitByIdQuery._();
|
|
@$core.override
|
|
HandlingunitByIdQuery createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByIdQuery> createRepeated() => $pb.PbList<HandlingunitByIdQuery>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByIdQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByIdQuery>(create);
|
|
static HandlingunitByIdQuery? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($1.QueryProjectHeader value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$pb.PbList<$1.QueryEntityID> get iDs => $_getList(1);
|
|
|
|
@$pb.TagNumber(3)
|
|
HandlingunitQueryOptions get options => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set options(HandlingunitQueryOptions value) => $_setField(3, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasOptions() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearOptions() => $_clearField(3);
|
|
@$pb.TagNumber(3)
|
|
HandlingunitQueryOptions ensureOptions() => $_ensure(2);
|
|
}
|
|
|
|
class HandlingunitByIdResult extends $pb.GeneratedMessage {
|
|
factory HandlingunitByIdResult({
|
|
$1.ResultHeader? header,
|
|
$core.Iterable<$3.Handlingunit>? objects,
|
|
}) {
|
|
final result = create();
|
|
if (header != null) result.header = header;
|
|
if (objects != null) result.objects.addAll(objects);
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByIdResult._();
|
|
|
|
factory HandlingunitByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByIdResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
|
|
..pc<$3.Handlingunit>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Handlingunit.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByIdResult clone() => HandlingunitByIdResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByIdResult copyWith(void Function(HandlingunitByIdResult) updates) => super.copyWith((message) => updates(message as HandlingunitByIdResult)) as HandlingunitByIdResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByIdResult create() => HandlingunitByIdResult._();
|
|
@$core.override
|
|
HandlingunitByIdResult createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByIdResult> createRepeated() => $pb.PbList<HandlingunitByIdResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByIdResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByIdResult>(create);
|
|
static HandlingunitByIdResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.ResultHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($1.ResultHeader value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.ResultHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$pb.PbList<$3.Handlingunit> get objects => $_getList(1);
|
|
}
|
|
|
|
class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
|
factory HandlingunitByFilterQuery({
|
|
$1.QueryProjectHeader? header,
|
|
$core.String? limitFilter,
|
|
$core.String? queryContext,
|
|
$core.Iterable<$1.BlockFilter>? blockFilters,
|
|
HandlingunitQueryOptions? options,
|
|
$1.EntityType? usageContextEntity,
|
|
$core.String? usageContextPath,
|
|
}) {
|
|
final result = create();
|
|
if (header != null) result.header = header;
|
|
if (limitFilter != null) result.limitFilter = limitFilter;
|
|
if (queryContext != null) result.queryContext = queryContext;
|
|
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
|
if (options != null) result.options = options;
|
|
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
|
|
if (usageContextPath != null) result.usageContextPath = usageContextPath;
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByFilterQuery._();
|
|
|
|
factory HandlingunitByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
|
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
|
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
|
..pc<$1.BlockFilter>(7, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
|
..aOM<HandlingunitQueryOptions>(8, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: HandlingunitQueryOptions.create)
|
|
..e<$1.EntityType>(9, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
|
|
..aOS(10, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByFilterQuery clone() => HandlingunitByFilterQuery()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByFilterQuery copyWith(void Function(HandlingunitByFilterQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByFilterQuery)) as HandlingunitByFilterQuery;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByFilterQuery create() => HandlingunitByFilterQuery._();
|
|
@$core.override
|
|
HandlingunitByFilterQuery createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByFilterQuery> createRepeated() => $pb.PbList<HandlingunitByFilterQuery>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByFilterQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByFilterQuery>(create);
|
|
static HandlingunitByFilterQuery? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($1.QueryProjectHeader value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get limitFilter => $_getSZ(1);
|
|
@$pb.TagNumber(4)
|
|
set limitFilter($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasLimitFilter() => $_has(1);
|
|
@$pb.TagNumber(4)
|
|
void clearLimitFilter() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$core.String get queryContext => $_getSZ(2);
|
|
@$pb.TagNumber(5)
|
|
set queryContext($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasQueryContext() => $_has(2);
|
|
@$pb.TagNumber(5)
|
|
void clearQueryContext() => $_clearField(5);
|
|
|
|
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
|
|
@$pb.TagNumber(7)
|
|
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
|
|
|
@$pb.TagNumber(8)
|
|
HandlingunitQueryOptions get options => $_getN(4);
|
|
@$pb.TagNumber(8)
|
|
set options(HandlingunitQueryOptions value) => $_setField(8, value);
|
|
@$pb.TagNumber(8)
|
|
$core.bool hasOptions() => $_has(4);
|
|
@$pb.TagNumber(8)
|
|
void clearOptions() => $_clearField(8);
|
|
@$pb.TagNumber(8)
|
|
HandlingunitQueryOptions ensureOptions() => $_ensure(4);
|
|
|
|
@$pb.TagNumber(9)
|
|
$1.EntityType get usageContextEntity => $_getN(5);
|
|
@$pb.TagNumber(9)
|
|
set usageContextEntity($1.EntityType value) => $_setField(9, value);
|
|
@$pb.TagNumber(9)
|
|
$core.bool hasUsageContextEntity() => $_has(5);
|
|
@$pb.TagNumber(9)
|
|
void clearUsageContextEntity() => $_clearField(9);
|
|
|
|
@$pb.TagNumber(10)
|
|
$core.String get usageContextPath => $_getSZ(6);
|
|
@$pb.TagNumber(10)
|
|
set usageContextPath($core.String value) => $_setString(6, value);
|
|
@$pb.TagNumber(10)
|
|
$core.bool hasUsageContextPath() => $_has(6);
|
|
@$pb.TagNumber(10)
|
|
void clearUsageContextPath() => $_clearField(10);
|
|
}
|
|
|
|
class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
|
factory HandlingunitByFilterResult({
|
|
$1.ResultHeader? header,
|
|
$core.Iterable<$3.Handlingunit>? objects,
|
|
$core.String? queryContext,
|
|
}) {
|
|
final result = create();
|
|
if (header != null) result.header = header;
|
|
if (objects != null) result.objects.addAll(objects);
|
|
if (queryContext != null) result.queryContext = queryContext;
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByFilterResult._();
|
|
|
|
factory HandlingunitByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
|
|
..pc<$3.Handlingunit>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Handlingunit.create)
|
|
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByFilterResult clone() => HandlingunitByFilterResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByFilterResult copyWith(void Function(HandlingunitByFilterResult) updates) => super.copyWith((message) => updates(message as HandlingunitByFilterResult)) as HandlingunitByFilterResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByFilterResult create() => HandlingunitByFilterResult._();
|
|
@$core.override
|
|
HandlingunitByFilterResult createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByFilterResult> createRepeated() => $pb.PbList<HandlingunitByFilterResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByFilterResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByFilterResult>(create);
|
|
static HandlingunitByFilterResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.ResultHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($1.ResultHeader value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.ResultHeader ensureHeader() => $_ensure(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$pb.PbList<$3.Handlingunit> get objects => $_getList(1);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get queryContext => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set queryContext($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasQueryContext() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearQueryContext() => $_clearField(3);
|
|
}
|
|
|
|
class HandlingunitQueryOptions extends $pb.GeneratedMessage {
|
|
factory HandlingunitQueryOptions({
|
|
$core.Iterable<$core.String>? only,
|
|
}) {
|
|
final result = create();
|
|
if (only != null) result.only.addAll(only);
|
|
return result;
|
|
}
|
|
|
|
HandlingunitQueryOptions._();
|
|
|
|
factory HandlingunitQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..pPS(1, _omitFieldNames ? '' : 'Only', protoName: 'Only')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitQueryOptions clone() => HandlingunitQueryOptions()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitQueryOptions copyWith(void Function(HandlingunitQueryOptions) updates) => super.copyWith((message) => updates(message as HandlingunitQueryOptions)) as HandlingunitQueryOptions;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitQueryOptions create() => HandlingunitQueryOptions._();
|
|
@$core.override
|
|
HandlingunitQueryOptions createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitQueryOptions> createRepeated() => $pb.PbList<HandlingunitQueryOptions>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitQueryOptions>(create);
|
|
static HandlingunitQueryOptions? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$pb.PbList<$core.String> get only => $_getList(0);
|
|
}
|
|
|
|
class HandlingunitByMatchQuery extends $pb.GeneratedMessage {
|
|
factory HandlingunitByMatchQuery({
|
|
$1.QueryProjectHeader? header,
|
|
$core.Iterable<$1.BlockFilter>? blockFilters,
|
|
$core.Iterable<$1.MatchField>? matchFields,
|
|
$1.EntityType? usageContextEntity,
|
|
$core.String? usageContextPath,
|
|
}) {
|
|
final result = create();
|
|
if (header != null) result.header = header;
|
|
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
|
if (matchFields != null) result.matchFields.addAll(matchFields);
|
|
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
|
|
if (usageContextPath != null) result.usageContextPath = usageContextPath;
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByMatchQuery._();
|
|
|
|
factory HandlingunitByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
|
..pc<$1.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
|
..pc<$1.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $1.MatchField.create)
|
|
..e<$1.EntityType>(7, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
|
|
..aOS(8, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByMatchQuery clone() => HandlingunitByMatchQuery()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByMatchQuery copyWith(void Function(HandlingunitByMatchQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByMatchQuery)) as HandlingunitByMatchQuery;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByMatchQuery create() => HandlingunitByMatchQuery._();
|
|
@$core.override
|
|
HandlingunitByMatchQuery createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByMatchQuery> createRepeated() => $pb.PbList<HandlingunitByMatchQuery>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByMatchQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByMatchQuery>(create);
|
|
static HandlingunitByMatchQuery? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader get header => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set header($1.QueryProjectHeader value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasHeader() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearHeader() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
|
|
|
|
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
|
|
@$pb.TagNumber(5)
|
|
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(1);
|
|
|
|
/// MatchField list structure, for FindMatching query
|
|
@$pb.TagNumber(6)
|
|
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
|
|
|
|
@$pb.TagNumber(7)
|
|
$1.EntityType get usageContextEntity => $_getN(3);
|
|
@$pb.TagNumber(7)
|
|
set usageContextEntity($1.EntityType value) => $_setField(7, value);
|
|
@$pb.TagNumber(7)
|
|
$core.bool hasUsageContextEntity() => $_has(3);
|
|
@$pb.TagNumber(7)
|
|
void clearUsageContextEntity() => $_clearField(7);
|
|
|
|
@$pb.TagNumber(8)
|
|
$core.String get usageContextPath => $_getSZ(4);
|
|
@$pb.TagNumber(8)
|
|
set usageContextPath($core.String value) => $_setString(4, value);
|
|
@$pb.TagNumber(8)
|
|
$core.bool hasUsageContextPath() => $_has(4);
|
|
@$pb.TagNumber(8)
|
|
void clearUsageContextPath() => $_clearField(8);
|
|
}
|
|
|
|
class HandlingunitByMatchResult extends $pb.GeneratedMessage {
|
|
factory HandlingunitByMatchResult({
|
|
$core.Iterable<$1.MatchFieldResult>? matchResults,
|
|
}) {
|
|
final result = create();
|
|
if (matchResults != null) result.matchResults.addAll(matchResults);
|
|
return result;
|
|
}
|
|
|
|
HandlingunitByMatchResult._();
|
|
|
|
factory HandlingunitByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory HandlingunitByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..pc<$1.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $1.MatchFieldResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByMatchResult clone() => HandlingunitByMatchResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
HandlingunitByMatchResult copyWith(void Function(HandlingunitByMatchResult) updates) => super.copyWith((message) => updates(message as HandlingunitByMatchResult)) as HandlingunitByMatchResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByMatchResult create() => HandlingunitByMatchResult._();
|
|
@$core.override
|
|
HandlingunitByMatchResult createEmptyInstance() => create();
|
|
static $pb.PbList<HandlingunitByMatchResult> createRepeated() => $pb.PbList<HandlingunitByMatchResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static HandlingunitByMatchResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitByMatchResult>(create);
|
|
static HandlingunitByMatchResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(2)
|
|
$pb.PbList<$1.MatchFieldResult> get matchResults => $_getList(0);
|
|
}
|
|
|
|
|
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|