Latest generation

This commit is contained in:
ci core model
2026-03-24 09:58:02 +00:00
parent 06b9c33015
commit 12180fe1c4
6 changed files with 373 additions and 4 deletions

View File

@@ -76,8 +76,9 @@ final $typed_data.Uint8List appointmentNotifyDescriptor = $convert.base64Decode(
'Mh0uYXBpLkFwcG9pbnRtZW50Tm90aWZ5UGF5bG9hZFIHUGF5bG9hZBJBCgxFdmVudFBheWxvYW'
'QYBCABKAsyHS5hcGkuQXBwb2ludG1lbnROb3RpZnlQYXlsb2FkUgxFdmVudFBheWxvYWQSRwoP'
'UHJldmlvdXNQYXlsb2FkGAUgASgLMh0uYXBpLkFwcG9pbnRtZW50Tm90aWZ5UGF5bG9hZFIPUH'
'JldmlvdXNQYXlsb2FkOlCiuxgHQ29tbWFuZLK7GAZOb3RpZnmCvBgdVHVtYmxpbmdQcm9jZXNz'
'aW5nVGltZVdpbmRvd3OKvBgWb2JqLmdldElEKCkuZ2V0UmVmSUQoKQ==');
'JldmlvdXNQYXlsb2FkOmeiuxgHQ29tbWFuZLK7GAZOb3RpZnn6uxgTQWxsb2NhdGlvbkNvbmZp'
'cm1lZIK8GB1UdW1ibGluZ1Byb2Nlc3NpbmdUaW1lV2luZG93c4q8GBZvYmouZ2V0SUQoKS5nZX'
'RSZWZJRCgp');
@$core.Deprecated('Use appointmentMailPayloadDescriptor instead')
const AppointmentMailPayload$json = {

View File

@@ -3211,6 +3211,275 @@ class AppointmentAllocationErrorResponse extends $pb.GeneratedMessage {
$2.EntityID ensureID() => $_ensure(1);
}
/// Event Payload
class AppointmentAllocationConfirmedPayload extends $pb.GeneratedMessage {
factory AppointmentAllocationConfirmedPayload({
@$core.Deprecated('This field is deprecated.')
$core.String? actorID,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
return result;
}
AppointmentAllocationConfirmedPayload._();
factory AppointmentAllocationConfirmedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAllocationConfirmedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationConfirmedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedPayload clone() => AppointmentAllocationConfirmedPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedPayload copyWith(void Function(AppointmentAllocationConfirmedPayload) updates) => super.copyWith((message) => updates(message as AppointmentAllocationConfirmedPayload)) as AppointmentAllocationConfirmedPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedPayload create() => AppointmentAllocationConfirmedPayload._();
@$core.override
AppointmentAllocationConfirmedPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentAllocationConfirmedPayload> createRepeated() => $pb.PbList<AppointmentAllocationConfirmedPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationConfirmedPayload>(create);
static AppointmentAllocationConfirmedPayload? _defaultInstance;
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(1)
$core.String get actorID => $_getSZ(0);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(1)
set actorID($core.String value) => $_setString(0, value);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(1)
$core.bool hasActorID() => $_has(0);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(1)
void clearActorID() => $_clearField(1);
}
/// Event message
class AppointmentAllocationConfirmedEvent extends $pb.GeneratedMessage {
factory AppointmentAllocationConfirmedEvent({
$2.EventHeader? header,
$2.EntityID? iD,
AppointmentAllocationConfirmedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAllocationConfirmedEvent._();
factory AppointmentAllocationConfirmedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAllocationConfirmedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationConfirmedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.EventHeader.create)
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
..aOM<AppointmentAllocationConfirmedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAllocationConfirmedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedEvent clone() => AppointmentAllocationConfirmedEvent()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedEvent copyWith(void Function(AppointmentAllocationConfirmedEvent) updates) => super.copyWith((message) => updates(message as AppointmentAllocationConfirmedEvent)) as AppointmentAllocationConfirmedEvent;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedEvent create() => AppointmentAllocationConfirmedEvent._();
@$core.override
AppointmentAllocationConfirmedEvent createEmptyInstance() => create();
static $pb.PbList<AppointmentAllocationConfirmedEvent> createRepeated() => $pb.PbList<AppointmentAllocationConfirmedEvent>();
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationConfirmedEvent>(create);
static AppointmentAllocationConfirmedEvent? _defaultInstance;
@$pb.TagNumber(1)
$2.EventHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.EventHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.EventHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$2.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($2.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$2.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
AppointmentAllocationConfirmedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAllocationConfirmedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAllocationConfirmedPayload ensurePayload() => $_ensure(2);
}
/// API Request
class AppointmentAllocationConfirmedRequest extends $pb.GeneratedMessage {
factory AppointmentAllocationConfirmedRequest({
$2.RequestProjectHeader? header,
$2.EntityID? iD,
AppointmentAllocationConfirmedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAllocationConfirmedRequest._();
factory AppointmentAllocationConfirmedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAllocationConfirmedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationConfirmedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestProjectHeader.create)
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
..aOM<AppointmentAllocationConfirmedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAllocationConfirmedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedRequest clone() => AppointmentAllocationConfirmedRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedRequest copyWith(void Function(AppointmentAllocationConfirmedRequest) updates) => super.copyWith((message) => updates(message as AppointmentAllocationConfirmedRequest)) as AppointmentAllocationConfirmedRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedRequest create() => AppointmentAllocationConfirmedRequest._();
@$core.override
AppointmentAllocationConfirmedRequest createEmptyInstance() => create();
static $pb.PbList<AppointmentAllocationConfirmedRequest> createRepeated() => $pb.PbList<AppointmentAllocationConfirmedRequest>();
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationConfirmedRequest>(create);
static AppointmentAllocationConfirmedRequest? _defaultInstance;
@$pb.TagNumber(1)
$2.RequestProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.RequestProjectHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.RequestProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$2.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($2.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$2.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
AppointmentAllocationConfirmedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAllocationConfirmedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAllocationConfirmedPayload ensurePayload() => $_ensure(2);
}
/// API Response
class AppointmentAllocationConfirmedResponse extends $pb.GeneratedMessage {
factory AppointmentAllocationConfirmedResponse({
$2.ResponseHeader? header,
$2.EntityID? iD,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
return result;
}
AppointmentAllocationConfirmedResponse._();
factory AppointmentAllocationConfirmedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAllocationConfirmedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationConfirmedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.ResponseHeader.create)
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedResponse clone() => AppointmentAllocationConfirmedResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAllocationConfirmedResponse copyWith(void Function(AppointmentAllocationConfirmedResponse) updates) => super.copyWith((message) => updates(message as AppointmentAllocationConfirmedResponse)) as AppointmentAllocationConfirmedResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedResponse create() => AppointmentAllocationConfirmedResponse._();
@$core.override
AppointmentAllocationConfirmedResponse createEmptyInstance() => create();
static $pb.PbList<AppointmentAllocationConfirmedResponse> createRepeated() => $pb.PbList<AppointmentAllocationConfirmedResponse>();
@$core.pragma('dart2js:noInline')
static AppointmentAllocationConfirmedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationConfirmedResponse>(create);
static AppointmentAllocationConfirmedResponse? _defaultInstance;
@$pb.TagNumber(1)
$2.ResponseHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.ResponseHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.ResponseHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$2.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($2.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$2.EntityID ensureID() => $_ensure(1);
}
/// Event Payload
class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierArrivedPayload({

View File

@@ -70,6 +70,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$allocationError, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed($0.AppointmentAllocationConfirmedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$allocationConfirmed, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierArrivedResponse> carrierArrived($0.AppointmentCarrierArrivedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierArrived, request, options: options);
}
@@ -174,6 +178,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/AllocationError',
($0.AppointmentAllocationErrorRequest value) => value.writeToBuffer(),
$0.AppointmentAllocationErrorResponse.fromBuffer);
static final _$allocationConfirmed = $grpc.ClientMethod<$0.AppointmentAllocationConfirmedRequest, $0.AppointmentAllocationConfirmedResponse>(
'/api.AppointmentInputAPI/AllocationConfirmed',
($0.AppointmentAllocationConfirmedRequest value) => value.writeToBuffer(),
$0.AppointmentAllocationConfirmedResponse.fromBuffer);
static final _$carrierArrived = $grpc.ClientMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
'/api.AppointmentInputAPI/CarrierArrived',
($0.AppointmentCarrierArrivedRequest value) => value.writeToBuffer(),
@@ -308,6 +316,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentAllocationErrorRequest.fromBuffer(value),
($0.AppointmentAllocationErrorResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAllocationConfirmedRequest, $0.AppointmentAllocationConfirmedResponse>(
'AllocationConfirmed',
allocationConfirmed_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAllocationConfirmedRequest.fromBuffer(value),
($0.AppointmentAllocationConfirmedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
'CarrierArrived',
carrierArrived_Pre,
@@ -476,6 +491,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentAllocationErrorResponse> allocationError($grpc.ServiceCall call, $0.AppointmentAllocationErrorRequest request);
$async.Future<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAllocationConfirmedRequest> $request) async {
return allocationConfirmed($call, await $request);
}
$async.Future<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed($grpc.ServiceCall call, $0.AppointmentAllocationConfirmedRequest request);
$async.Future<$0.AppointmentCarrierArrivedResponse> carrierArrived_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierArrivedRequest> $request) async {
return carrierArrived($call, await $request);
}

View File

@@ -896,6 +896,84 @@ final $typed_data.Uint8List appointmentAllocationErrorResponseDescriptor = $conv
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
'RDoforsYCFJlc3BvbnNlursYD0FsbG9jYXRpb25FcnJvcg==');
@$core.Deprecated('Use appointmentAllocationConfirmedPayloadDescriptor instead')
const AppointmentAllocationConfirmedPayload$json = {
'1': 'AppointmentAllocationConfirmedPayload',
'2': [
{
'1': 'ActorID',
'3': 1,
'4': 1,
'5': 9,
'8': {'3': true},
'10': 'ActorID',
},
],
'7': {},
};
/// Descriptor for `AppointmentAllocationConfirmedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAllocationConfirmedPayloadDescriptor = $convert.base64Decode(
'CiVBcHBvaW50bWVudEFsbG9jYXRpb25Db25maXJtZWRQYXlsb2FkEhwKB0FjdG9ySUQYASABKA'
'lCAhgBUgdBY3RvcklEOjiSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgTQWxs'
'b2NhdGlvbkNvbmZpcm1lZA==');
@$core.Deprecated('Use appointmentAllocationConfirmedEventDescriptor instead')
const AppointmentAllocationConfirmedEvent$json = {
'1': 'AppointmentAllocationConfirmedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentAllocationConfirmedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAllocationConfirmedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAllocationConfirmedEventDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudEFsbG9jYXRpb25Db25maXJtZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC'
'5hcGkuRXZlbnRIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50'
'aXR5SURCCPpCBYoBAhABUgJJRBJOCgdQYXlsb2FkGAMgASgLMiouYXBpLkFwcG9pbnRtZW50QW'
'xsb2NhdGlvbkNvbmZpcm1lZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOlSSQRoKGNIBBkhl'
'YWRlctIBAklE0gEHUGF5bG9hZKK7GAVFdmVudLq7GBNBbGxvY2F0aW9uQ29uZmlybWVk2rsYE2'
'FsbG9jYXRpb25Db25maXJtZWQ=');
@$core.Deprecated('Use appointmentAllocationConfirmedRequestDescriptor instead')
const AppointmentAllocationConfirmedRequest$json = {
'1': 'AppointmentAllocationConfirmedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentAllocationConfirmedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAllocationConfirmedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAllocationConfirmedRequestDescriptor = $convert.base64Decode(
'CiVBcHBvaW50bWVudEFsbG9jYXRpb25Db25maXJtZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCz'
'IZLmFwaS5SZXF1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEo'
'CzINLmFwaS5FbnRpdHlJREII+kIFigECEAFSAklEEk4KB1BheWxvYWQYAyABKAsyKi5hcGkuQX'
'Bwb2ludG1lbnRBbGxvY2F0aW9uQ29uZmlybWVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6'
'P5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgTQWxsb2NhdGlvbk'
'NvbmZpcm1lZA==');
@$core.Deprecated('Use appointmentAllocationConfirmedResponseDescriptor instead')
const AppointmentAllocationConfirmedResponse$json = {
'1': 'AppointmentAllocationConfirmedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `AppointmentAllocationConfirmedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAllocationConfirmedResponseDescriptor = $convert.base64Decode(
'CiZBcHBvaW50bWVudEFsbG9jYXRpb25Db25maXJtZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKA'
'syEy5hcGkuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'RFICSUQ6I6K7GAhSZXNwb25zZbq7GBNBbGxvY2F0aW9uQ29uZmlybWVk');
@$core.Deprecated('Use appointmentCarrierArrivedPayloadDescriptor instead')
const AppointmentCarrierArrivedPayload$json = {
'1': 'AppointmentCarrierArrivedPayload',