You've already forked dart-core-sdk
Release 1.11.6
This commit is contained in:
@@ -509,13 +509,11 @@ class OpeningDayDefinition extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$0.TimeRange>? timeRanges,
|
||||
RuleFilter? filter,
|
||||
$core.int? orderAppliance,
|
||||
$core.bool? applyCalendarTimetable,
|
||||
}) {
|
||||
final result = create();
|
||||
if (timeRanges != null) result.timeRanges.addAll(timeRanges);
|
||||
if (filter != null) result.filter = filter;
|
||||
if (orderAppliance != null) result.orderAppliance = orderAppliance;
|
||||
if (applyCalendarTimetable != null) result.applyCalendarTimetable = applyCalendarTimetable;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -528,7 +526,6 @@ class OpeningDayDefinition extends $pb.GeneratedMessage {
|
||||
..pc<$0.TimeRange>(2, _omitFieldNames ? '' : 'TimeRanges', $pb.PbFieldType.PM, protoName: 'TimeRanges', subBuilder: $0.TimeRange.create)
|
||||
..aOM<RuleFilter>(3, _omitFieldNames ? '' : 'Filter', protoName: 'Filter', subBuilder: RuleFilter.create)
|
||||
..a<$core.int>(4, _omitFieldNames ? '' : 'OrderAppliance', $pb.PbFieldType.O3, protoName: 'OrderAppliance')
|
||||
..aOB(5, _omitFieldNames ? '' : 'ApplyCalendarTimetable', protoName: 'ApplyCalendarTimetable')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -571,15 +568,6 @@ class OpeningDayDefinition extends $pb.GeneratedMessage {
|
||||
$core.bool hasOrderAppliance() => $_has(2);
|
||||
@$pb.TagNumber(4)
|
||||
void clearOrderAppliance() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool get applyCalendarTimetable => $_getBF(3);
|
||||
@$pb.TagNumber(5)
|
||||
set applyCalendarTimetable($core.bool value) => $_setBool(3, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasApplyCalendarTimetable() => $_has(3);
|
||||
@$pb.TagNumber(5)
|
||||
void clearApplyCalendarTimetable() => $_clearField(5);
|
||||
}
|
||||
|
||||
/// CapacityRule
|
||||
@@ -1064,6 +1052,156 @@ class SegmentationSelection extends $pb.GeneratedMessage {
|
||||
void clearSegmentationValueID() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// CarrierInformation
|
||||
/// The five following messages are pretty similar, for each added object, they can add a translated version
|
||||
class CarrierInformation extends $pb.GeneratedMessage {
|
||||
factory CarrierInformation({
|
||||
$core.String? carrierInformationID,
|
||||
$core.Iterable<$0.LabelByLanguage>? labels,
|
||||
CarrierInformationType? type,
|
||||
$core.bool? isMandatory,
|
||||
$core.bool? formatCheck,
|
||||
}) {
|
||||
final result = create();
|
||||
if (carrierInformationID != null) result.carrierInformationID = carrierInformationID;
|
||||
if (labels != null) result.labels.addAll(labels);
|
||||
if (type != null) result.type = type;
|
||||
if (isMandatory != null) result.isMandatory = isMandatory;
|
||||
if (formatCheck != null) result.formatCheck = formatCheck;
|
||||
return result;
|
||||
}
|
||||
|
||||
CarrierInformation._();
|
||||
|
||||
factory CarrierInformation.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CarrierInformation.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CarrierInformation', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'CarrierInformationID', protoName: 'CarrierInformationID')
|
||||
..pc<$0.LabelByLanguage>(2, _omitFieldNames ? '' : 'Labels', $pb.PbFieldType.PM, protoName: 'Labels', subBuilder: $0.LabelByLanguage.create)
|
||||
..e<CarrierInformationType>(3, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: CarrierInformationType.CARRIER_INFORMATION_TYPE_UNKNOWN, valueOf: CarrierInformationType.valueOf, enumValues: CarrierInformationType.values)
|
||||
..aOB(4, _omitFieldNames ? '' : 'IsMandatory', protoName: 'IsMandatory')
|
||||
..aOB(5, _omitFieldNames ? '' : 'FormatCheck', protoName: 'FormatCheck')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformation clone() => CarrierInformation()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformation copyWith(void Function(CarrierInformation) updates) => super.copyWith((message) => updates(message as CarrierInformation)) as CarrierInformation;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformation create() => CarrierInformation._();
|
||||
@$core.override
|
||||
CarrierInformation createEmptyInstance() => create();
|
||||
static $pb.PbList<CarrierInformation> createRepeated() => $pb.PbList<CarrierInformation>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformation getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CarrierInformation>(create);
|
||||
static CarrierInformation? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get carrierInformationID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set carrierInformationID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCarrierInformationID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCarrierInformationID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$0.LabelByLanguage> get labels => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
CarrierInformationType get type => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set type(CarrierInformationType value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasType() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearType() => $_clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool get isMandatory => $_getBF(3);
|
||||
@$pb.TagNumber(4)
|
||||
set isMandatory($core.bool value) => $_setBool(3, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasIsMandatory() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearIsMandatory() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool get formatCheck => $_getBF(4);
|
||||
@$pb.TagNumber(5)
|
||||
set formatCheck($core.bool value) => $_setBool(4, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasFormatCheck() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearFormatCheck() => $_clearField(5);
|
||||
}
|
||||
|
||||
class CarrierInformationWithValue extends $pb.GeneratedMessage {
|
||||
factory CarrierInformationWithValue({
|
||||
CarrierInformation? carrierInformation,
|
||||
$core.String? value,
|
||||
}) {
|
||||
final result = create();
|
||||
if (carrierInformation != null) result.carrierInformation = carrierInformation;
|
||||
if (value != null) result.value = value;
|
||||
return result;
|
||||
}
|
||||
|
||||
CarrierInformationWithValue._();
|
||||
|
||||
factory CarrierInformationWithValue.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory CarrierInformationWithValue.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CarrierInformationWithValue', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<CarrierInformation>(1, _omitFieldNames ? '' : 'CarrierInformation', protoName: 'CarrierInformation', subBuilder: CarrierInformation.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Value', protoName: 'Value')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformationWithValue clone() => CarrierInformationWithValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformationWithValue copyWith(void Function(CarrierInformationWithValue) updates) => super.copyWith((message) => updates(message as CarrierInformationWithValue)) as CarrierInformationWithValue;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue create() => CarrierInformationWithValue._();
|
||||
@$core.override
|
||||
CarrierInformationWithValue createEmptyInstance() => create();
|
||||
static $pb.PbList<CarrierInformationWithValue> createRepeated() => $pb.PbList<CarrierInformationWithValue>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CarrierInformationWithValue>(create);
|
||||
static CarrierInformationWithValue? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
CarrierInformation get carrierInformation => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set carrierInformation(CarrierInformation value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCarrierInformation() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCarrierInformation() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
CarrierInformation ensureCarrierInformation() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get value => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set value($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasValue() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearValue() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// Document
|
||||
/// We anticipate that they want to put several but if they only have one with all the language, it should still work
|
||||
class Document extends $pb.GeneratedMessage {
|
||||
@@ -1443,14 +1581,10 @@ class ActorConstraint extends $pb.GeneratedMessage {
|
||||
factory ActorConstraint({
|
||||
$core.Iterable<SegmentationActorConstraint>? segmentationConstraints,
|
||||
$0.Period? maxBookingPeriod,
|
||||
$core.bool? isBookingEnabledForUnknownUsers,
|
||||
CommandIdentifierEntry? commandIdentifierEntry,
|
||||
}) {
|
||||
final result = create();
|
||||
if (segmentationConstraints != null) result.segmentationConstraints.addAll(segmentationConstraints);
|
||||
if (maxBookingPeriod != null) result.maxBookingPeriod = maxBookingPeriod;
|
||||
if (isBookingEnabledForUnknownUsers != null) result.isBookingEnabledForUnknownUsers = isBookingEnabledForUnknownUsers;
|
||||
if (commandIdentifierEntry != null) result.commandIdentifierEntry = commandIdentifierEntry;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1462,8 +1596,6 @@ class ActorConstraint extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorConstraint', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<SegmentationActorConstraint>(1, _omitFieldNames ? '' : 'SegmentationConstraints', $pb.PbFieldType.PM, protoName: 'SegmentationConstraints', subBuilder: SegmentationActorConstraint.create)
|
||||
..aOM<$0.Period>(3, _omitFieldNames ? '' : 'MaxBookingPeriod', protoName: 'MaxBookingPeriod', subBuilder: $0.Period.create)
|
||||
..aOB(4, _omitFieldNames ? '' : 'IsBookingEnabledForUnknownUsers', protoName: 'IsBookingEnabledForUnknownUsers')
|
||||
..e<CommandIdentifierEntry>(5, _omitFieldNames ? '' : 'CommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'CommandIdentifierEntry', defaultOrMaker: CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: CommandIdentifierEntry.valueOf, enumValues: CommandIdentifierEntry.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1499,38 +1631,20 @@ class ActorConstraint extends $pb.GeneratedMessage {
|
||||
void clearMaxBookingPeriod() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$0.Period ensureMaxBookingPeriod() => $_ensure(1);
|
||||
|
||||
/// Enable booking for unknown users
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool get isBookingEnabledForUnknownUsers => $_getBF(2);
|
||||
@$pb.TagNumber(4)
|
||||
set isBookingEnabledForUnknownUsers($core.bool value) => $_setBool(2, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasIsBookingEnabledForUnknownUsers() => $_has(2);
|
||||
@$pb.TagNumber(4)
|
||||
void clearIsBookingEnabledForUnknownUsers() => $_clearField(4);
|
||||
|
||||
/// CommandIdentifierEntry
|
||||
@$pb.TagNumber(5)
|
||||
CommandIdentifierEntry get commandIdentifierEntry => $_getN(3);
|
||||
@$pb.TagNumber(5)
|
||||
set commandIdentifierEntry(CommandIdentifierEntry value) => $_setField(5, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasCommandIdentifierEntry() => $_has(3);
|
||||
@$pb.TagNumber(5)
|
||||
void clearCommandIdentifierEntry() => $_clearField(5);
|
||||
}
|
||||
|
||||
class SegmentationActorConstraint extends $pb.GeneratedMessage {
|
||||
factory SegmentationActorConstraint({
|
||||
$core.String? segmentationID,
|
||||
$core.Iterable<$core.String>? restrictedValueIDs,
|
||||
$core.bool? allValues,
|
||||
SegmentationConstraintType? type,
|
||||
$core.String? attributePath,
|
||||
}) {
|
||||
final result = create();
|
||||
if (segmentationID != null) result.segmentationID = segmentationID;
|
||||
if (restrictedValueIDs != null) result.restrictedValueIDs.addAll(restrictedValueIDs);
|
||||
if (allValues != null) result.allValues = allValues;
|
||||
if (type != null) result.type = type;
|
||||
if (attributePath != null) result.attributePath = attributePath;
|
||||
return result;
|
||||
@@ -1544,6 +1658,7 @@ class SegmentationActorConstraint extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationActorConstraint', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'SegmentationID', protoName: 'SegmentationID')
|
||||
..pPS(2, _omitFieldNames ? '' : 'RestrictedValueIDs', protoName: 'RestrictedValueIDs')
|
||||
..aOB(3, _omitFieldNames ? '' : 'AllValues', protoName: 'AllValues')
|
||||
..e<SegmentationConstraintType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: SegmentationConstraintType.SEGMENTATION_CONSTRAINT_TYPE_UNKNOWN, valueOf: SegmentationConstraintType.valueOf, enumValues: SegmentationConstraintType.values)
|
||||
..aOS(5, _omitFieldNames ? '' : 'AttributePath', protoName: 'AttributePath')
|
||||
..hasRequiredFields = false
|
||||
@@ -1580,141 +1695,47 @@ class SegmentationActorConstraint extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$core.String> get restrictedValueIDs => $_getList(1);
|
||||
|
||||
/// In case of user value choice, to restrict Segmentation values.
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get allValues => $_getBF(2);
|
||||
@$pb.TagNumber(3)
|
||||
set allValues($core.bool value) => $_setBool(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasAllValues() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearAllValues() => $_clearField(3);
|
||||
|
||||
/// Define the type of restriction applied on the Segmentation key.
|
||||
@$pb.TagNumber(4)
|
||||
SegmentationConstraintType get type => $_getN(2);
|
||||
SegmentationConstraintType get type => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set type(SegmentationConstraintType value) => $_setField(4, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasType() => $_has(2);
|
||||
$core.bool hasType() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearType() => $_clearField(4);
|
||||
|
||||
/// In case of order attribute choice, to define the attribute path.
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get attributePath => $_getSZ(3);
|
||||
$core.String get attributePath => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set attributePath($core.String value) => $_setString(3, value);
|
||||
set attributePath($core.String value) => $_setString(4, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasAttributePath() => $_has(3);
|
||||
$core.bool hasAttributePath() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearAttributePath() => $_clearField(5);
|
||||
}
|
||||
|
||||
class AppointmentCommission extends $pb.GeneratedMessage {
|
||||
factory AppointmentCommission({
|
||||
$core.String? projectID,
|
||||
$core.String? orderID,
|
||||
$core.Iterable<QuantityByUnit>? quantities,
|
||||
$core.String? organisationID,
|
||||
$core.String? partnerAppID,
|
||||
$core.String? executionflowID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (orderID != null) result.orderID = orderID;
|
||||
if (quantities != null) result.quantities.addAll(quantities);
|
||||
if (organisationID != null) result.organisationID = organisationID;
|
||||
if (partnerAppID != null) result.partnerAppID = partnerAppID;
|
||||
if (executionflowID != null) result.executionflowID = executionflowID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentCommission._();
|
||||
|
||||
factory AppointmentCommission.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentCommission.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCommission', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
||||
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
||||
..aOS(5, _omitFieldNames ? '' : 'PartnerAppID', protoName: 'PartnerAppID')
|
||||
..aOS(6, _omitFieldNames ? '' : 'ExecutionflowID', protoName: 'ExecutionflowID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentCommission clone() => AppointmentCommission()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentCommission copyWith(void Function(AppointmentCommission) updates) => super.copyWith((message) => updates(message as AppointmentCommission)) as AppointmentCommission;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCommission create() => AppointmentCommission._();
|
||||
@$core.override
|
||||
AppointmentCommission createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentCommission> createRepeated() => $pb.PbList<AppointmentCommission>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCommission getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCommission>(create);
|
||||
static AppointmentCommission? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get projectID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set projectID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasProjectID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearProjectID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get orderID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set orderID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasOrderID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearOrderID() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get organisationID => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set organisationID($core.String value) => $_setString(3, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasOrganisationID() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearOrganisationID() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get partnerAppID => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set partnerAppID($core.String value) => $_setString(4, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasPartnerAppID() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearPartnerAppID() => $_clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get executionflowID => $_getSZ(5);
|
||||
@$pb.TagNumber(6)
|
||||
set executionflowID($core.String value) => $_setString(5, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasExecutionflowID() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearExecutionflowID() => $_clearField(6);
|
||||
}
|
||||
|
||||
class Commission extends $pb.GeneratedMessage {
|
||||
factory Commission({
|
||||
$core.String? projectID,
|
||||
$core.String? orderID,
|
||||
$core.Iterable<QuantityByUnit>? quantities,
|
||||
$core.String? actorID,
|
||||
$core.String? executionflowID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (projectID != null) result.projectID = projectID;
|
||||
if (orderID != null) result.orderID = orderID;
|
||||
if (quantities != null) result.quantities.addAll(quantities);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (executionflowID != null) result.executionflowID = executionflowID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1727,8 +1748,6 @@ class Commission extends $pb.GeneratedMessage {
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
|
||||
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..aOS(6, _omitFieldNames ? '' : 'ExecutionflowID', protoName: 'ExecutionflowID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1769,24 +1788,6 @@ class Commission extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get actorID => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set actorID($core.String value) => $_setString(3, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasActorID() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearActorID() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get executionflowID => $_getSZ(4);
|
||||
@$pb.TagNumber(6)
|
||||
set executionflowID($core.String value) => $_setString(4, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasExecutionflowID() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearExecutionflowID() => $_clearField(6);
|
||||
}
|
||||
|
||||
class Booking extends $pb.GeneratedMessage {
|
||||
|
||||
Reference in New Issue
Block a user