You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1050,6 +1050,66 @@ class SegmentationFilter extends $pb.GeneratedMessage {
|
||||
$pb.PbList<$core.String> get segmentationValueIDs => $_getList(1);
|
||||
}
|
||||
|
||||
class SegmentationSelection extends $pb.GeneratedMessage {
|
||||
factory SegmentationSelection({
|
||||
$core.String? segmentationID,
|
||||
$core.String? segmentationValueIDs,
|
||||
}) {
|
||||
final result = create();
|
||||
if (segmentationID != null) result.segmentationID = segmentationID;
|
||||
if (segmentationValueIDs != null) result.segmentationValueIDs = segmentationValueIDs;
|
||||
return result;
|
||||
}
|
||||
|
||||
SegmentationSelection._();
|
||||
|
||||
factory SegmentationSelection.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SegmentationSelection.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationSelection', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'SegmentationID', protoName: 'SegmentationID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'SegmentationValueIDs', protoName: 'SegmentationValueIDs')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SegmentationSelection clone() => SegmentationSelection()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SegmentationSelection copyWith(void Function(SegmentationSelection) updates) => super.copyWith((message) => updates(message as SegmentationSelection)) as SegmentationSelection;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SegmentationSelection create() => SegmentationSelection._();
|
||||
@$core.override
|
||||
SegmentationSelection createEmptyInstance() => create();
|
||||
static $pb.PbList<SegmentationSelection> createRepeated() => $pb.PbList<SegmentationSelection>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SegmentationSelection getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SegmentationSelection>(create);
|
||||
static SegmentationSelection? _defaultInstance;
|
||||
|
||||
/// Identifier of the Segmentation key.
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get segmentationID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set segmentationID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSegmentationID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSegmentationID() => $_clearField(1);
|
||||
|
||||
/// Identifiers of the Segmentation key values.
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get segmentationValueIDs => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set segmentationValueIDs($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasSegmentationValueIDs() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearSegmentationValueIDs() => $_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 {
|
||||
|
||||
Reference in New Issue
Block a user