Latest generation

This commit is contained in:
ci core model
2025-05-05 09:13:40 +00:00
parent d8da740588
commit 2dad9d51c8
136 changed files with 6276 additions and 6261 deletions

View File

@@ -3150,11 +3150,12 @@ class MatchField extends $pb.GeneratedMessage {
}
///
/// Standard structure, having an attribute and a list of values
/// Standard structure, having an attribute,CombinedID and a list of values
class MatchFieldResult extends $pb.GeneratedMessage {
factory MatchFieldResult({
$core.String? attribute,
$core.Iterable<$core.String>? values,
$core.String? combinedID,
}) {
final $result = create();
if (attribute != null) {
@@ -3163,6 +3164,9 @@ class MatchFieldResult extends $pb.GeneratedMessage {
if (values != null) {
$result.values.addAll(values);
}
if (combinedID != null) {
$result.combinedID = combinedID;
}
return $result;
}
MatchFieldResult._() : super();
@@ -3172,6 +3176,7 @@ class MatchFieldResult extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MatchFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Attribute', protoName: 'Attribute')
..pPS(2, _omitFieldNames ? '' : 'Values', protoName: 'Values')
..aOS(3, _omitFieldNames ? '' : 'CombinedID', protoName: 'CombinedID')
..hasRequiredFields = false
;
@@ -3207,6 +3212,15 @@ class MatchFieldResult extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$pb.PbList<$core.String> get values => $_getList(1);
@$pb.TagNumber(3)
$core.String get combinedID => $_getSZ(2);
@$pb.TagNumber(3)
set combinedID($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasCombinedID() => $_has(2);
@$pb.TagNumber(3)
void clearCombinedID() => $_clearField(3);
}
///
@@ -6380,7 +6394,7 @@ class MatchElementField extends $pb.GeneratedMessage {
}
///
/// Standard structure, having an map of elements (key,value)
/// Standard structure, having an map of elements (key,value), In case of Metadata/SegmentationKey, we replace the attribute(Path) by the DisplayPath (to keep track of the Metadata/SegmentationKey Name)
class MatchFieldElementResult extends $pb.GeneratedMessage {
factory MatchFieldElementResult({
$pb.PbMap<$core.String, $core.String>? matchingElements,