Latest generation

This commit is contained in:
ci core model
2025-10-15 08:31:19 +00:00
parent 703b589594
commit d36eeef041
4 changed files with 30 additions and 30 deletions

View File

@@ -3184,8 +3184,8 @@ class SetSiteAliasRequest extends $pb.GeneratedMessage {
SiteActor ensureSiteActor() => $_ensure(0);
}
class SegmentationsSettings extends $pb.GeneratedMessage {
factory SegmentationsSettings({
class SegmentationsSetting extends $pb.GeneratedMessage {
factory SegmentationsSetting({
$2.ProjectAuthorisation? authorisation,
$core.String? name,
$core.String? projectID,
@@ -3197,12 +3197,12 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
return result;
}
SegmentationsSettings._();
SegmentationsSetting._();
factory SegmentationsSettings.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SegmentationsSettings.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
factory SegmentationsSetting.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SegmentationsSetting.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsSettings', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsSetting', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.ProjectAuthorisation>(1, _omitFieldNames ? '' : 'Authorisation', protoName: 'Authorisation', subBuilder: $2.ProjectAuthorisation.create)
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
@@ -3210,21 +3210,21 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SegmentationsSettings clone() => SegmentationsSettings()..mergeFromMessage(this);
SegmentationsSetting clone() => SegmentationsSetting()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SegmentationsSettings copyWith(void Function(SegmentationsSettings) updates) => super.copyWith((message) => updates(message as SegmentationsSettings)) as SegmentationsSettings;
SegmentationsSetting copyWith(void Function(SegmentationsSetting) updates) => super.copyWith((message) => updates(message as SegmentationsSetting)) as SegmentationsSetting;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static SegmentationsSettings create() => SegmentationsSettings._();
static SegmentationsSetting create() => SegmentationsSetting._();
@$core.override
SegmentationsSettings createEmptyInstance() => create();
static $pb.PbList<SegmentationsSettings> createRepeated() => $pb.PbList<SegmentationsSettings>();
SegmentationsSetting createEmptyInstance() => create();
static $pb.PbList<SegmentationsSetting> createRepeated() => $pb.PbList<SegmentationsSetting>();
@$core.pragma('dart2js:noInline')
static SegmentationsSettings getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SegmentationsSettings>(create);
static SegmentationsSettings? _defaultInstance;
static SegmentationsSetting getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SegmentationsSetting>(create);
static SegmentationsSetting? _defaultInstance;
@$pb.TagNumber(1)
$2.ProjectAuthorisation get authorisation => $_getN(0);
@@ -3259,11 +3259,11 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
factory ListOfSitesPerOrganisation({
$core.String? organisationID,
$core.Iterable<SegmentationsSettings>? segmentationsSetting,
$core.Iterable<SegmentationsSetting>? segmentationsSettings,
}) {
final result = create();
if (organisationID != null) result.organisationID = organisationID;
if (segmentationsSetting != null) result.segmentationsSetting.addAll(segmentationsSetting);
if (segmentationsSettings != null) result.segmentationsSettings.addAll(segmentationsSettings);
return result;
}
@@ -3274,7 +3274,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListOfSitesPerOrganisation', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..pc<SegmentationsSettings>(2, _omitFieldNames ? '' : 'SegmentationsSetting', $pb.PbFieldType.PM, protoName: 'SegmentationsSetting', subBuilder: SegmentationsSettings.create)
..pc<SegmentationsSetting>(2, _omitFieldNames ? '' : 'SegmentationsSettings', $pb.PbFieldType.PM, protoName: 'SegmentationsSettings', subBuilder: SegmentationsSetting.create)
..hasRequiredFields = false
;
@@ -3305,7 +3305,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
void clearOrganisationID() => $_clearField(1);
@$pb.TagNumber(2)
$pb.PbList<SegmentationsSettings> get segmentationsSetting => $_getList(1);
$pb.PbList<SegmentationsSetting> get segmentationsSettings => $_getList(1);
}
class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {