Latest generation

This commit is contained in:
ci core model
2026-02-24 07:54:48 +00:00
parent e81916fcd4
commit a9dcab0c50
4 changed files with 17 additions and 3 deletions

View File

@@ -6276,6 +6276,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
$core.bool? isIndexed,
$core.Iterable<$core.String>? kpiGroups,
$core.int? modelVersion,
$core.String? domainString,
}) {
final result = create();
if (name != null) result.name = name;
@@ -6286,6 +6287,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
if (isIndexed != null) result.isIndexed = isIndexed;
if (kpiGroups != null) result.kpiGroups.addAll(kpiGroups);
if (modelVersion != null) result.modelVersion = modelVersion;
if (domainString != null) result.domainString = domainString;
return result;
}
@@ -6303,6 +6305,7 @@ class EntityDefinition extends $pb.GeneratedMessage {
..aOB(6, _omitFieldNames ? '' : 'IsIndexed', protoName: 'IsIndexed')
..pPS(7, _omitFieldNames ? '' : 'KpiGroups', protoName: 'KpiGroups')
..a<$core.int>(8, _omitFieldNames ? '' : 'ModelVersion', $pb.PbFieldType.OU3, protoName: 'ModelVersion')
..aOS(9, _omitFieldNames ? '' : 'DomainString', protoName: 'DomainString')
..hasRequiredFields = false
;
@@ -6382,6 +6385,15 @@ class EntityDefinition extends $pb.GeneratedMessage {
$core.bool hasModelVersion() => $_has(7);
@$pb.TagNumber(8)
void clearModelVersion() => $_clearField(8);
@$pb.TagNumber(9)
$core.String get domainString => $_getSZ(8);
@$pb.TagNumber(9)
set domainString($core.String value) => $_setString(8, value);
@$pb.TagNumber(9)
$core.bool hasDomainString() => $_has(8);
@$pb.TagNumber(9)
void clearDomainString() => $_clearField(9);
}
class CrossFineQuery extends $pb.GeneratedMessage {