Latest generation

This commit is contained in:
ci core model
2025-10-15 08:27:44 +00:00
parent 1f1b50aed3
commit 703b589594
4 changed files with 24 additions and 10 deletions

View File

@@ -3188,10 +3188,12 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
factory SegmentationsSettings({
$2.ProjectAuthorisation? authorisation,
$core.String? name,
$core.String? projectID,
}) {
final result = create();
if (authorisation != null) result.authorisation = authorisation;
if (name != null) result.name = name;
if (projectID != null) result.projectID = projectID;
return result;
}
@@ -3203,6 +3205,7 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsSettings', 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')
..hasRequiredFields = false
;
@@ -3242,16 +3245,25 @@ class SegmentationsSettings extends $pb.GeneratedMessage {
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
void clearName() => $_clearField(2);
@$pb.TagNumber(3)
$core.String get projectID => $_getSZ(2);
@$pb.TagNumber(3)
set projectID($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasProjectID() => $_has(2);
@$pb.TagNumber(3)
void clearProjectID() => $_clearField(3);
}
class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
factory ListOfSitesPerOrganisation({
$core.String? organisationID,
$core.Iterable<SegmentationsSettings>? projects,
$core.Iterable<SegmentationsSettings>? segmentationsSetting,
}) {
final result = create();
if (organisationID != null) result.organisationID = organisationID;
if (projects != null) result.projects.addAll(projects);
if (segmentationsSetting != null) result.segmentationsSetting.addAll(segmentationsSetting);
return result;
}
@@ -3262,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 ? '' : 'Projects', $pb.PbFieldType.PM, protoName: 'Projects', subBuilder: SegmentationsSettings.create)
..pc<SegmentationsSettings>(2, _omitFieldNames ? '' : 'SegmentationsSetting', $pb.PbFieldType.PM, protoName: 'SegmentationsSetting', subBuilder: SegmentationsSettings.create)
..hasRequiredFields = false
;
@@ -3293,7 +3305,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
void clearOrganisationID() => $_clearField(1);
@$pb.TagNumber(2)
$pb.PbList<SegmentationsSettings> get projects => $_getList(1);
$pb.PbList<SegmentationsSettings> get segmentationsSetting => $_getList(1);
}
class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {