You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -106,7 +106,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$75.Commission>? commissions,
|
||||
$core.Iterable<$70.QuantityByUnit>? quantitiesByUnits,
|
||||
$core.Iterable<$70.Segmentation>? segmentations,
|
||||
$core.Iterable<CarrierInformationWithValue>? carrierInformation,
|
||||
$core.Iterable<$70.CarrierInformationWithValue>? carrierInformation,
|
||||
$70.Slot? slot,
|
||||
$core.Iterable<$core.String>? emails,
|
||||
$75.AppointmentStatusStruct? status,
|
||||
@@ -151,7 +151,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
..pc<$75.Commission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $75.Commission.create)
|
||||
..pc<$70.QuantityByUnit>(3, _omitFieldNames ? '' : 'QuantitiesByUnits', $pb.PbFieldType.PM, protoName: 'QuantitiesByUnits', subBuilder: $70.QuantityByUnit.create)
|
||||
..pc<$70.Segmentation>(4, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $70.Segmentation.create)
|
||||
..pc<CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: CarrierInformationWithValue.create)
|
||||
..pc<$70.CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformationWithValue.create)
|
||||
..aOM<$70.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $70.Slot.create)
|
||||
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||
..aOM<$75.AppointmentStatusStruct>(8, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $75.AppointmentStatusStruct.create)
|
||||
@@ -199,7 +199,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
|
||||
/// The slot booked for the appointment
|
||||
@$pb.TagNumber(6)
|
||||
@@ -319,68 +319,6 @@ class AppointmentTriplet extends $pb.GeneratedMessage {
|
||||
Appointment ensureLastEvent() => $_ensure(2);
|
||||
}
|
||||
|
||||
class CarrierInformationWithValue extends $pb.GeneratedMessage {
|
||||
factory CarrierInformationWithValue({
|
||||
$70.CarrierInformation? carrierInformation,
|
||||
$3.ValueType? value,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (carrierInformation != null) {
|
||||
$result.carrierInformation = carrierInformation;
|
||||
}
|
||||
if (value != null) {
|
||||
$result.value = value;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CarrierInformationWithValue._() : super();
|
||||
factory CarrierInformationWithValue.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CarrierInformationWithValue.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CarrierInformationWithValue', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$70.CarrierInformation>(1, _omitFieldNames ? '' : 'CarrierInformation', protoName: 'CarrierInformation', subBuilder: $70.CarrierInformation.create)
|
||||
..aOM<$3.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $3.ValueType.create)
|
||||
..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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue create() => CarrierInformationWithValue._();
|
||||
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)
|
||||
$70.CarrierInformation get carrierInformation => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set carrierInformation($70.CarrierInformation v) { $_setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCarrierInformation() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCarrierInformation() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$70.CarrierInformation ensureCarrierInformation() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$3.ValueType get value => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set value($3.ValueType v) { $_setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasValue() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearValue() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$3.ValueType ensureValue() => $_ensure(1);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -80,18 +80,3 @@ final $typed_data.Uint8List appointmentTripletDescriptor = $convert.base64Decode
|
||||
'IHQ3VycmVudBIsCghQcmV2aW91cxgCIAEoCzIQLmFwaS5BcHBvaW50bWVudFIIUHJldmlvdXMS'
|
||||
'LgoJTGFzdEV2ZW50GAMgASgLMhAuYXBpLkFwcG9pbnRtZW50UglMYXN0RXZlbnQ=');
|
||||
|
||||
@$core.Deprecated('Use carrierInformationWithValueDescriptor instead')
|
||||
const CarrierInformationWithValue$json = {
|
||||
'1': 'CarrierInformationWithValue',
|
||||
'2': [
|
||||
{'1': 'CarrierInformation', '3': 1, '4': 1, '5': 11, '6': '.api.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'1': 'Value', '3': 2, '4': 1, '5': 11, '6': '.api.ValueType', '10': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CarrierInformationWithValue`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List carrierInformationWithValueDescriptor = $convert.base64Decode(
|
||||
'ChtDYXJyaWVySW5mb3JtYXRpb25XaXRoVmFsdWUSRwoSQ2FycmllckluZm9ybWF0aW9uGAEgAS'
|
||||
'gLMhcuYXBpLkNhcnJpZXJJbmZvcm1hdGlvblISQ2FycmllckluZm9ybWF0aW9uEiQKBVZhbHVl'
|
||||
'GAIgASgLMg4uYXBpLlZhbHVlVHlwZVIFVmFsdWU=');
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$75.Commission>? commissions,
|
||||
$core.Iterable<$70.QuantityByUnit>? quantitiesByUnits,
|
||||
$core.Iterable<$70.Segmentation>? segmentations,
|
||||
$core.Iterable<$70.CarrierInformation>? carrierInformation,
|
||||
$core.Iterable<$70.CarrierInformationWithValue>? carrierInformation,
|
||||
$70.Slot? slot,
|
||||
$core.Iterable<$core.String>? emails,
|
||||
}) {
|
||||
@@ -64,7 +64,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
..pc<$75.Commission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $75.Commission.create)
|
||||
..pc<$70.QuantityByUnit>(3, _omitFieldNames ? '' : 'QuantitiesByUnits', $pb.PbFieldType.PM, protoName: 'QuantitiesByUnits', subBuilder: $70.QuantityByUnit.create)
|
||||
..pc<$70.Segmentation>(4, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $70.Segmentation.create)
|
||||
..pc<$70.CarrierInformation>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformation.create)
|
||||
..pc<$70.CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformationWithValue.create)
|
||||
..aOM<$70.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $70.Slot.create)
|
||||
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||
..hasRequiredFields = false
|
||||
@@ -110,7 +110,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<$70.CarrierInformation> get carrierInformation => $_getList(4);
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
|
||||
/// The slot booked for the appointment
|
||||
@$pb.TagNumber(6)
|
||||
@@ -602,7 +602,7 @@ class AppointmentCanceledResponse extends $pb.GeneratedMessage {
|
||||
/// Event Payload
|
||||
class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierInformationUpdatedPayload({
|
||||
$core.Iterable<$70.CarrierInformation>? carrierInformation,
|
||||
$core.Iterable<$70.CarrierInformationWithValue>? carrierInformation,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (carrierInformation != null) {
|
||||
@@ -615,7 +615,7 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierInformationUpdatedPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierInformationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$70.CarrierInformation>(1, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformation.create)
|
||||
..pc<$70.CarrierInformationWithValue>(1, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformationWithValue.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -636,7 +636,7 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$70.CarrierInformation> get carrierInformation => $_getList(0);
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(0);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
|
||||
@@ -21,7 +21,7 @@ const AppointmentCreatedPayload$json = {
|
||||
{'1': 'Commissions', '3': 2, '4': 3, '5': 11, '6': '.api.Commission', '8': {}, '10': 'Commissions'},
|
||||
{'1': 'QuantitiesByUnits', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'QuantitiesByUnits'},
|
||||
{'1': 'Segmentations', '3': 4, '4': 3, '5': 11, '6': '.api.Segmentation', '10': 'Segmentations'},
|
||||
{'1': 'CarrierInformation', '3': 5, '4': 3, '5': 11, '6': '.api.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'1': 'CarrierInformation', '3': 5, '4': 3, '5': 11, '6': '.api.CarrierInformationWithValue', '10': 'CarrierInformation'},
|
||||
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
|
||||
{'1': 'Emails', '3': 7, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
|
||||
],
|
||||
@@ -35,12 +35,12 @@ final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base6
|
||||
'c2lvbnMYAiADKAsyDy5hcGkuQ29tbWlzc2lvbkII+kIFkgECCAFSC0NvbW1pc3Npb25zEksKEV'
|
||||
'F1YW50aXRpZXNCeVVuaXRzGAMgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0Qgj6QgWSAQIIAVIR'
|
||||
'UXVhbnRpdGllc0J5VW5pdHMSNwoNU2VnbWVudGF0aW9ucxgEIAMoCzIRLmFwaS5TZWdtZW50YX'
|
||||
'Rpb25SDVNlZ21lbnRhdGlvbnMSRwoSQ2FycmllckluZm9ybWF0aW9uGAUgAygLMhcuYXBpLkNh'
|
||||
'cnJpZXJJbmZvcm1hdGlvblISQ2FycmllckluZm9ybWF0aW9uEh0KBFNsb3QYBiABKAsyCS5hcG'
|
||||
'kuU2xvdFIEU2xvdBJ9CgZFbWFpbHMYByADKAlCZZJBUTIdTXVzdCBiZSBhIHZhbGlkIGVtYWls'
|
||||
'IGFkZHJlc3NKMFsiSm9obi5kb2VAcmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQHJlZmxleC5jb2'
|
||||
'0iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHM6PpJBIwohMg1FdmVudCBQYXlsb2Fk0gEPQXBw'
|
||||
'b2ludG1lbnRUeXBlorsYBUV2ZW50qLsYAbq7GAdDcmVhdGVk');
|
||||
'Rpb25SDVNlZ21lbnRhdGlvbnMSUAoSQ2FycmllckluZm9ybWF0aW9uGAUgAygLMiAuYXBpLkNh'
|
||||
'cnJpZXJJbmZvcm1hdGlvbldpdGhWYWx1ZVISQ2FycmllckluZm9ybWF0aW9uEh0KBFNsb3QYBi'
|
||||
'ABKAsyCS5hcGkuU2xvdFIEU2xvdBJ9CgZFbWFpbHMYByADKAlCZZJBUTIdTXVzdCBiZSBhIHZh'
|
||||
'bGlkIGVtYWlsIGFkZHJlc3NKMFsiSm9obi5kb2VAcmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQH'
|
||||
'JlZmxleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHM6PpJBIwohMg1FdmVudCBQYXls'
|
||||
'b2Fk0gEPQXBwb2ludG1lbnRUeXBlorsYBUV2ZW50qLsYAbq7GAdDcmVhdGVk');
|
||||
|
||||
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
|
||||
const AppointmentCreatedEvent$json = {
|
||||
@@ -165,17 +165,17 @@ final $typed_data.Uint8List appointmentCanceledResponseDescriptor = $convert.bas
|
||||
const AppointmentCarrierInformationUpdatedPayload$json = {
|
||||
'1': 'AppointmentCarrierInformationUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'CarrierInformation', '3': 1, '4': 3, '5': 11, '6': '.api.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'1': 'CarrierInformation', '3': 1, '4': 3, '5': 11, '6': '.api.CarrierInformationWithValue', '10': 'CarrierInformation'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentCarrierInformationUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentCarrierInformationUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'CitBcHBvaW50bWVudENhcnJpZXJJbmZvcm1hdGlvblVwZGF0ZWRQYXlsb2FkEkcKEkNhcnJpZX'
|
||||
'JJbmZvcm1hdGlvbhgBIAMoCzIXLmFwaS5DYXJyaWVySW5mb3JtYXRpb25SEkNhcnJpZXJJbmZv'
|
||||
'cm1hdGlvbjo+kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYGUNhcnJpZXJJbm'
|
||||
'Zvcm1hdGlvblVwZGF0ZWQ=');
|
||||
'CitBcHBvaW50bWVudENhcnJpZXJJbmZvcm1hdGlvblVwZGF0ZWRQYXlsb2FkElAKEkNhcnJpZX'
|
||||
'JJbmZvcm1hdGlvbhgBIAMoCzIgLmFwaS5DYXJyaWVySW5mb3JtYXRpb25XaXRoVmFsdWVSEkNh'
|
||||
'cnJpZXJJbmZvcm1hdGlvbjo+kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYGU'
|
||||
'NhcnJpZXJJbmZvcm1hdGlvblVwZGF0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use appointmentCarrierInformationUpdatedEventDescriptor instead')
|
||||
const AppointmentCarrierInformationUpdatedEvent$json = {
|
||||
|
||||
@@ -1145,6 +1145,68 @@ class CarrierInformation extends $pb.GeneratedMessage {
|
||||
void clearFormatCheck() => $_clearField(5);
|
||||
}
|
||||
|
||||
class CarrierInformationWithValue extends $pb.GeneratedMessage {
|
||||
factory CarrierInformationWithValue({
|
||||
CarrierInformation? carrierInformation,
|
||||
$3.ValueType? value,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (carrierInformation != null) {
|
||||
$result.carrierInformation = carrierInformation;
|
||||
}
|
||||
if (value != null) {
|
||||
$result.value = value;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CarrierInformationWithValue._() : super();
|
||||
factory CarrierInformationWithValue.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CarrierInformationWithValue.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
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)
|
||||
..aOM<$3.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $3.ValueType.create)
|
||||
..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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue create() => CarrierInformationWithValue._();
|
||||
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 v) { $_setField(1, v); }
|
||||
@$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)
|
||||
$3.ValueType get value => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set value($3.ValueType v) { $_setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasValue() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearValue() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$3.ValueType ensureValue() => $_ensure(1);
|
||||
}
|
||||
|
||||
/// 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 {
|
||||
|
||||
@@ -369,6 +369,21 @@ final $typed_data.Uint8List carrierInformationDescriptor = $convert.base64Decode
|
||||
'kuQ2FycmllckluZm9ybWF0aW9uVHlwZVIEVHlwZRIgCgtJc01hbmRhdG9yeRgEIAEoCFILSXNN'
|
||||
'YW5kYXRvcnkSIAoLRm9ybWF0Q2hlY2sYBSABKAhSC0Zvcm1hdENoZWNr');
|
||||
|
||||
@$core.Deprecated('Use carrierInformationWithValueDescriptor instead')
|
||||
const CarrierInformationWithValue$json = {
|
||||
'1': 'CarrierInformationWithValue',
|
||||
'2': [
|
||||
{'1': 'CarrierInformation', '3': 1, '4': 1, '5': 11, '6': '.api.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'1': 'Value', '3': 2, '4': 1, '5': 11, '6': '.api.ValueType', '10': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CarrierInformationWithValue`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List carrierInformationWithValueDescriptor = $convert.base64Decode(
|
||||
'ChtDYXJyaWVySW5mb3JtYXRpb25XaXRoVmFsdWUSRwoSQ2FycmllckluZm9ybWF0aW9uGAEgAS'
|
||||
'gLMhcuYXBpLkNhcnJpZXJJbmZvcm1hdGlvblISQ2FycmllckluZm9ybWF0aW9uEiQKBVZhbHVl'
|
||||
'GAIgASgLMg4uYXBpLlZhbHVlVHlwZVIFVmFsdWU=');
|
||||
|
||||
@$core.Deprecated('Use documentDescriptor instead')
|
||||
const Document$json = {
|
||||
'1': 'Document',
|
||||
|
||||
Reference in New Issue
Block a user