Latest generation

This commit is contained in:
ci core model
2025-07-28 09:15:56 +00:00
parent ce3bb4413b
commit 3ebd88ed9a
5 changed files with 1050 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250728081546
Lib version: 1.11.0-SNAPSHOT-250728091532

View File

@@ -607,6 +607,780 @@ class AppointmentCanceledResponse extends $pb.GeneratedMessage {
$2.EntityID ensureID() => $_ensure(1);
}
/// Event Payload
class AppointmentDateModificationPayload extends $pb.GeneratedMessage {
factory AppointmentDateModificationPayload({
$1.Slot? slot,
}) {
final result = create();
if (slot != null) result.slot = slot;
return result;
}
AppointmentDateModificationPayload._();
factory AppointmentDateModificationPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentDateModificationPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentDateModificationPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $1.Slot.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationPayload clone() => AppointmentDateModificationPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationPayload copyWith(void Function(AppointmentDateModificationPayload) updates) => super.copyWith((message) => updates(message as AppointmentDateModificationPayload)) as AppointmentDateModificationPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationPayload create() => AppointmentDateModificationPayload._();
@$core.override
AppointmentDateModificationPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentDateModificationPayload> createRepeated() => $pb.PbList<AppointmentDateModificationPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentDateModificationPayload>(create);
static AppointmentDateModificationPayload? _defaultInstance;
@$pb.TagNumber(6)
$1.Slot get slot => $_getN(0);
@$pb.TagNumber(6)
set slot($1.Slot value) => $_setField(6, value);
@$pb.TagNumber(6)
$core.bool hasSlot() => $_has(0);
@$pb.TagNumber(6)
void clearSlot() => $_clearField(6);
@$pb.TagNumber(6)
$1.Slot ensureSlot() => $_ensure(0);
}
/// Event message
class AppointmentDateModificationEvent extends $pb.GeneratedMessage {
factory AppointmentDateModificationEvent({
$2.EventHeader? header,
$2.EntityID? iD,
AppointmentDateModificationPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentDateModificationEvent._();
factory AppointmentDateModificationEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentDateModificationEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentDateModificationEvent', 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<AppointmentDateModificationPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentDateModificationPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationEvent clone() => AppointmentDateModificationEvent()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationEvent copyWith(void Function(AppointmentDateModificationEvent) updates) => super.copyWith((message) => updates(message as AppointmentDateModificationEvent)) as AppointmentDateModificationEvent;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationEvent create() => AppointmentDateModificationEvent._();
@$core.override
AppointmentDateModificationEvent createEmptyInstance() => create();
static $pb.PbList<AppointmentDateModificationEvent> createRepeated() => $pb.PbList<AppointmentDateModificationEvent>();
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentDateModificationEvent>(create);
static AppointmentDateModificationEvent? _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)
AppointmentDateModificationPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentDateModificationPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentDateModificationPayload ensurePayload() => $_ensure(2);
}
/// API Request
class AppointmentDateModificationRequest extends $pb.GeneratedMessage {
factory AppointmentDateModificationRequest({
$2.RequestSiteHeader? header,
$2.EntityID? iD,
AppointmentDateModificationPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentDateModificationRequest._();
factory AppointmentDateModificationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentDateModificationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentDateModificationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestSiteHeader.create)
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
..aOM<AppointmentDateModificationPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentDateModificationPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationRequest clone() => AppointmentDateModificationRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationRequest copyWith(void Function(AppointmentDateModificationRequest) updates) => super.copyWith((message) => updates(message as AppointmentDateModificationRequest)) as AppointmentDateModificationRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationRequest create() => AppointmentDateModificationRequest._();
@$core.override
AppointmentDateModificationRequest createEmptyInstance() => create();
static $pb.PbList<AppointmentDateModificationRequest> createRepeated() => $pb.PbList<AppointmentDateModificationRequest>();
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentDateModificationRequest>(create);
static AppointmentDateModificationRequest? _defaultInstance;
@$pb.TagNumber(1)
$2.RequestSiteHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.RequestSiteHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.RequestSiteHeader 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)
AppointmentDateModificationPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentDateModificationPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentDateModificationPayload ensurePayload() => $_ensure(2);
}
/// API Response
class AppointmentDateModificationResponse extends $pb.GeneratedMessage {
factory AppointmentDateModificationResponse({
$2.ResponseSiteHeader? header,
$2.EntityID? iD,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
return result;
}
AppointmentDateModificationResponse._();
factory AppointmentDateModificationResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentDateModificationResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentDateModificationResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.ResponseSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.ResponseSiteHeader.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.')
AppointmentDateModificationResponse clone() => AppointmentDateModificationResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentDateModificationResponse copyWith(void Function(AppointmentDateModificationResponse) updates) => super.copyWith((message) => updates(message as AppointmentDateModificationResponse)) as AppointmentDateModificationResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationResponse create() => AppointmentDateModificationResponse._();
@$core.override
AppointmentDateModificationResponse createEmptyInstance() => create();
static $pb.PbList<AppointmentDateModificationResponse> createRepeated() => $pb.PbList<AppointmentDateModificationResponse>();
@$core.pragma('dart2js:noInline')
static AppointmentDateModificationResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentDateModificationResponse>(create);
static AppointmentDateModificationResponse? _defaultInstance;
@$pb.TagNumber(1)
$2.ResponseSiteHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.ResponseSiteHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.ResponseSiteHeader 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);
}
class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
factory AppointmentAttachmentAddedPayload({
$core.Iterable<$2.AttachmentSummary>? attachments,
}) {
final result = create();
if (attachments != null) result.attachments.addAll(attachments);
return result;
}
AppointmentAttachmentAddedPayload._();
factory AppointmentAttachmentAddedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentAddedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentAddedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.AttachmentSummary>(1, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $2.AttachmentSummary.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedPayload clone() => AppointmentAttachmentAddedPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedPayload copyWith(void Function(AppointmentAttachmentAddedPayload) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentAddedPayload)) as AppointmentAttachmentAddedPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedPayload create() => AppointmentAttachmentAddedPayload._();
@$core.override
AppointmentAttachmentAddedPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentAddedPayload> createRepeated() => $pb.PbList<AppointmentAttachmentAddedPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentAddedPayload>(create);
static AppointmentAttachmentAddedPayload? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
}
class AppointmentAttachmentAddedEvent extends $pb.GeneratedMessage {
factory AppointmentAttachmentAddedEvent({
$2.EventHeader? header,
$2.EntityID? iD,
AppointmentAttachmentAddedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAttachmentAddedEvent._();
factory AppointmentAttachmentAddedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentAddedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentAddedEvent', 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<AppointmentAttachmentAddedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAttachmentAddedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedEvent clone() => AppointmentAttachmentAddedEvent()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedEvent copyWith(void Function(AppointmentAttachmentAddedEvent) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentAddedEvent)) as AppointmentAttachmentAddedEvent;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedEvent create() => AppointmentAttachmentAddedEvent._();
@$core.override
AppointmentAttachmentAddedEvent createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentAddedEvent> createRepeated() => $pb.PbList<AppointmentAttachmentAddedEvent>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentAddedEvent>(create);
static AppointmentAttachmentAddedEvent? _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)
AppointmentAttachmentAddedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAttachmentAddedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAttachmentAddedPayload ensurePayload() => $_ensure(2);
}
class AppointmentAttachmentAddedRequest extends $pb.GeneratedMessage {
factory AppointmentAttachmentAddedRequest({
$2.RequestProjectHeader? header,
$2.EntityID? iD,
AppointmentAttachmentAddedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAttachmentAddedRequest._();
factory AppointmentAttachmentAddedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentAddedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentAddedRequest', 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<AppointmentAttachmentAddedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAttachmentAddedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedRequest clone() => AppointmentAttachmentAddedRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedRequest copyWith(void Function(AppointmentAttachmentAddedRequest) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentAddedRequest)) as AppointmentAttachmentAddedRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedRequest create() => AppointmentAttachmentAddedRequest._();
@$core.override
AppointmentAttachmentAddedRequest createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentAddedRequest> createRepeated() => $pb.PbList<AppointmentAttachmentAddedRequest>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentAddedRequest>(create);
static AppointmentAttachmentAddedRequest? _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)
AppointmentAttachmentAddedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAttachmentAddedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAttachmentAddedPayload ensurePayload() => $_ensure(2);
}
class AppointmentAttachmentAddedResponse extends $pb.GeneratedMessage {
factory AppointmentAttachmentAddedResponse({
$2.ResponseHeader? header,
$2.EntityID? iD,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
return result;
}
AppointmentAttachmentAddedResponse._();
factory AppointmentAttachmentAddedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentAddedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentAddedResponse', 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.')
AppointmentAttachmentAddedResponse clone() => AppointmentAttachmentAddedResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentAddedResponse copyWith(void Function(AppointmentAttachmentAddedResponse) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentAddedResponse)) as AppointmentAttachmentAddedResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedResponse create() => AppointmentAttachmentAddedResponse._();
@$core.override
AppointmentAttachmentAddedResponse createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentAddedResponse> createRepeated() => $pb.PbList<AppointmentAttachmentAddedResponse>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentAddedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentAddedResponse>(create);
static AppointmentAttachmentAddedResponse? _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);
}
class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
factory AppointmentAttachmentRemovedPayload({
$core.Iterable<$2.AttachmentSummary>? attachments,
}) {
final result = create();
if (attachments != null) result.attachments.addAll(attachments);
return result;
}
AppointmentAttachmentRemovedPayload._();
factory AppointmentAttachmentRemovedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentRemovedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentRemovedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.AttachmentSummary>(1, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $2.AttachmentSummary.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedPayload clone() => AppointmentAttachmentRemovedPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedPayload copyWith(void Function(AppointmentAttachmentRemovedPayload) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentRemovedPayload)) as AppointmentAttachmentRemovedPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedPayload create() => AppointmentAttachmentRemovedPayload._();
@$core.override
AppointmentAttachmentRemovedPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentRemovedPayload> createRepeated() => $pb.PbList<AppointmentAttachmentRemovedPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentRemovedPayload>(create);
static AppointmentAttachmentRemovedPayload? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
}
class AppointmentAttachmentRemovedEvent extends $pb.GeneratedMessage {
factory AppointmentAttachmentRemovedEvent({
$2.EventHeader? header,
$2.EntityID? iD,
AppointmentAttachmentRemovedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAttachmentRemovedEvent._();
factory AppointmentAttachmentRemovedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentRemovedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentRemovedEvent', 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<AppointmentAttachmentRemovedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAttachmentRemovedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedEvent clone() => AppointmentAttachmentRemovedEvent()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedEvent copyWith(void Function(AppointmentAttachmentRemovedEvent) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentRemovedEvent)) as AppointmentAttachmentRemovedEvent;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedEvent create() => AppointmentAttachmentRemovedEvent._();
@$core.override
AppointmentAttachmentRemovedEvent createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentRemovedEvent> createRepeated() => $pb.PbList<AppointmentAttachmentRemovedEvent>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentRemovedEvent>(create);
static AppointmentAttachmentRemovedEvent? _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)
AppointmentAttachmentRemovedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAttachmentRemovedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAttachmentRemovedPayload ensurePayload() => $_ensure(2);
}
class AppointmentAttachmentRemovedRequest extends $pb.GeneratedMessage {
factory AppointmentAttachmentRemovedRequest({
$2.RequestProjectHeader? header,
$2.EntityID? iD,
AppointmentAttachmentRemovedPayload? payload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
AppointmentAttachmentRemovedRequest._();
factory AppointmentAttachmentRemovedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentRemovedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentRemovedRequest', 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<AppointmentAttachmentRemovedPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAttachmentRemovedPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedRequest clone() => AppointmentAttachmentRemovedRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedRequest copyWith(void Function(AppointmentAttachmentRemovedRequest) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentRemovedRequest)) as AppointmentAttachmentRemovedRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedRequest create() => AppointmentAttachmentRemovedRequest._();
@$core.override
AppointmentAttachmentRemovedRequest createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentRemovedRequest> createRepeated() => $pb.PbList<AppointmentAttachmentRemovedRequest>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentRemovedRequest>(create);
static AppointmentAttachmentRemovedRequest? _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)
AppointmentAttachmentRemovedPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentAttachmentRemovedPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentAttachmentRemovedPayload ensurePayload() => $_ensure(2);
}
class AppointmentAttachmentRemovedResponse extends $pb.GeneratedMessage {
factory AppointmentAttachmentRemovedResponse({
$2.ResponseHeader? header,
$2.EntityID? iD,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
return result;
}
AppointmentAttachmentRemovedResponse._();
factory AppointmentAttachmentRemovedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentAttachmentRemovedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAttachmentRemovedResponse', 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.')
AppointmentAttachmentRemovedResponse clone() => AppointmentAttachmentRemovedResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentAttachmentRemovedResponse copyWith(void Function(AppointmentAttachmentRemovedResponse) updates) => super.copyWith((message) => updates(message as AppointmentAttachmentRemovedResponse)) as AppointmentAttachmentRemovedResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedResponse create() => AppointmentAttachmentRemovedResponse._();
@$core.override
AppointmentAttachmentRemovedResponse createEmptyInstance() => create();
static $pb.PbList<AppointmentAttachmentRemovedResponse> createRepeated() => $pb.PbList<AppointmentAttachmentRemovedResponse>();
@$core.pragma('dart2js:noInline')
static AppointmentAttachmentRemovedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAttachmentRemovedResponse>(create);
static AppointmentAttachmentRemovedResponse? _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 AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCarrierInformationUpdatedPayload({

View File

@@ -42,6 +42,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$canceled, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentDateModificationResponse> dateModification($0.AppointmentDateModificationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$dateModification, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierInformationUpdated, request, options: options);
}
@@ -78,6 +82,14 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$metaDataUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttachmentAddedResponse> attachmentAdded($0.AppointmentAttachmentAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attachmentAdded, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved($0.AppointmentAttachmentRemovedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attachmentRemoved, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.AppointmentCreatedRequest, $0.AppointmentCreatedResponse>(
@@ -88,6 +100,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/Canceled',
($0.AppointmentCanceledRequest value) => value.writeToBuffer(),
$0.AppointmentCanceledResponse.fromBuffer);
static final _$dateModification = $grpc.ClientMethod<$0.AppointmentDateModificationRequest, $0.AppointmentDateModificationResponse>(
'/api.AppointmentInputAPI/DateModification',
($0.AppointmentDateModificationRequest value) => value.writeToBuffer(),
$0.AppointmentDateModificationResponse.fromBuffer);
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'/api.AppointmentInputAPI/CarrierInformationUpdated',
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
@@ -124,6 +140,14 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/MetaDataUpdated',
($0.AppointmentMetaDataUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentMetaDataUpdatedResponse.fromBuffer);
static final _$attachmentAdded = $grpc.ClientMethod<$0.AppointmentAttachmentAddedRequest, $0.AppointmentAttachmentAddedResponse>(
'/api.AppointmentInputAPI/AttachmentAdded',
($0.AppointmentAttachmentAddedRequest value) => value.writeToBuffer(),
$0.AppointmentAttachmentAddedResponse.fromBuffer);
static final _$attachmentRemoved = $grpc.ClientMethod<$0.AppointmentAttachmentRemovedRequest, $0.AppointmentAttachmentRemovedResponse>(
'/api.AppointmentInputAPI/AttachmentRemoved',
($0.AppointmentAttachmentRemovedRequest value) => value.writeToBuffer(),
$0.AppointmentAttachmentRemovedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.AppointmentInputAPI')
@@ -145,6 +169,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentCanceledRequest.fromBuffer(value),
($0.AppointmentCanceledResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentDateModificationRequest, $0.AppointmentDateModificationResponse>(
'DateModification',
dateModification_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentDateModificationRequest.fromBuffer(value),
($0.AppointmentDateModificationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'CarrierInformationUpdated',
carrierInformationUpdated_Pre,
@@ -208,6 +239,20 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentMetaDataUpdatedRequest.fromBuffer(value),
($0.AppointmentMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttachmentAddedRequest, $0.AppointmentAttachmentAddedResponse>(
'AttachmentAdded',
attachmentAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttachmentAddedRequest.fromBuffer(value),
($0.AppointmentAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttachmentRemovedRequest, $0.AppointmentAttachmentRemovedResponse>(
'AttachmentRemoved',
attachmentRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttachmentRemovedRequest.fromBuffer(value),
($0.AppointmentAttachmentRemovedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.AppointmentCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCreatedRequest> $request) async {
@@ -222,6 +267,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentCanceledResponse> canceled($grpc.ServiceCall call, $0.AppointmentCanceledRequest request);
$async.Future<$0.AppointmentDateModificationResponse> dateModification_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentDateModificationRequest> $request) async {
return dateModification($call, await $request);
}
$async.Future<$0.AppointmentDateModificationResponse> dateModification($grpc.ServiceCall call, $0.AppointmentDateModificationRequest request);
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async {
return carrierInformationUpdated($call, await $request);
}
@@ -276,4 +327,16 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $0.AppointmentMetaDataUpdatedRequest request);
$async.Future<$0.AppointmentAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttachmentAddedRequest> $request) async {
return attachmentAdded($call, await $request);
}
$async.Future<$0.AppointmentAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $0.AppointmentAttachmentAddedRequest request);
$async.Future<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttachmentRemovedRequest> $request) async {
return attachmentRemoved($call, await $request);
}
$async.Future<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $0.AppointmentAttachmentRemovedRequest request);
}

View File

@@ -168,6 +168,217 @@ final $typed_data.Uint8List appointmentCanceledResponseDescriptor = $convert.bas
'BvbnNlU2l0ZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoY'
'orsYCFJlc3BvbnNlursYCENhbmNlbGVk');
@$core.Deprecated('Use appointmentDateModificationPayloadDescriptor instead')
const AppointmentDateModificationPayload$json = {
'1': 'AppointmentDateModificationPayload',
'2': [
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
],
'7': {},
};
/// Descriptor for `AppointmentDateModificationPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentDateModificationPayloadDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudERhdGVNb2RpZmljYXRpb25QYXlsb2FkEh0KBFNsb3QYBiABKAsyCS5hcG'
'kuU2xvdFIEU2xvdDo1kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYEERhdGVN'
'b2RpZmljYXRpb24=');
@$core.Deprecated('Use appointmentDateModificationEventDescriptor instead')
const AppointmentDateModificationEvent$json = {
'1': 'AppointmentDateModificationEvent',
'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.AppointmentDateModificationPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentDateModificationEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentDateModificationEventDescriptor = $convert.base64Decode(
'CiBBcHBvaW50bWVudERhdGVNb2RpZmljYXRpb25FdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcG'
'kuRXZlbnRIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5'
'SURCCPpCBYoBAhABUgJJRBJLCgdQYXlsb2FkGAMgASgLMicuYXBpLkFwcG9pbnRtZW50RGF0ZU'
'1vZGlmaWNhdGlvblBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOk6SQRoKGNIBBkhlYWRlctIB'
'AklE0gEHUGF5bG9hZKK7GAVFdmVudLq7GBBEYXRlTW9kaWZpY2F0aW9u2rsYEGRhdGVNb2RpZm'
'ljYXRpb24=');
@$core.Deprecated('Use appointmentDateModificationRequestDescriptor instead')
const AppointmentDateModificationRequest$json = {
'1': 'AppointmentDateModificationRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '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.AppointmentDateModificationPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentDateModificationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentDateModificationRequestDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudERhdGVNb2RpZmljYXRpb25SZXF1ZXN0EjgKBkhlYWRlchgBIAEoCzIWLm'
'FwaS5SZXF1ZXN0U2l0ZUhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFw'
'aS5FbnRpdHlJREII+kIFigECEAFSAklEEksKB1BheWxvYWQYAyABKAsyJy5hcGkuQXBwb2ludG'
'1lbnREYXRlTW9kaWZpY2F0aW9uUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6PJJBGgoY0gEG'
'SGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgQRGF0ZU1vZGlmaWNhdGlvbg==');
@$core.Deprecated('Use appointmentDateModificationResponseDescriptor instead')
const AppointmentDateModificationResponse$json = {
'1': 'AppointmentDateModificationResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseSiteHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `AppointmentDateModificationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentDateModificationResponseDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudERhdGVNb2RpZmljYXRpb25SZXNwb25zZRIvCgZIZWFkZXIYASABKAsyFy'
'5hcGkuUmVzcG9uc2VTaXRlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5'
'SURSAklEOiCiuxgIUmVzcG9uc2W6uxgQRGF0ZU1vZGlmaWNhdGlvbg==');
@$core.Deprecated('Use appointmentAttachmentAddedPayloadDescriptor instead')
const AppointmentAttachmentAddedPayload$json = {
'1': 'AppointmentAttachmentAddedPayload',
'2': [
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentAddedPayloadDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudEF0dGFjaG1lbnRBZGRlZFBheWxvYWQSYwoLQXR0YWNobWVudHMYASADKA'
'syFi5hcGkuQXR0YWNobWVudFN1bW1hcnlCKZJBJjIkTnVtYmVyIG9mIGF0dGFjaG1lbnRzIGFk'
'ZGVkIHBlciB0eXBlUgtBdHRhY2htZW50czogorsYBUV2ZW50qLsYAbq7GA9BdHRhY2htZW50QW'
'RkZWQ=');
@$core.Deprecated('Use appointmentAttachmentAddedEventDescriptor instead')
const AppointmentAttachmentAddedEvent$json = {
'1': 'AppointmentAttachmentAddedEvent',
'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.AppointmentAttachmentAddedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentAddedEventDescriptor = $convert.base64Decode(
'Ch9BcHBvaW50bWVudEF0dGFjaG1lbnRBZGRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS'
'5FdmVudEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REII+kIFigECEAFSAklEEkoKB1BheWxvYWQYAyABKAsyJi5hcGkuQXBwb2ludG1lbnRBdHRhY2'
'htZW50QWRkZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFj'
'aG1lbnRBZGRlZNq7GA1hZGRBdHRhY2htZW50');
@$core.Deprecated('Use appointmentAttachmentAddedRequestDescriptor instead')
const AppointmentAttachmentAddedRequest$json = {
'1': 'AppointmentAttachmentAddedRequest',
'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.AppointmentAttachmentAddedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentAddedRequestDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudEF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYX'
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0u'
'YXBpLkVudGl0eUlEQgj6QgWKAQIQAVICSUQSSgoHUGF5bG9hZBgDIAEoCzImLmFwaS5BcHBvaW'
'50bWVudEF0dGFjaG1lbnRBZGRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIB'
'BkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
@$core.Deprecated('Use appointmentAttachmentAddedResponseDescriptor instead')
const AppointmentAttachmentAddedResponse$json = {
'1': 'AppointmentAttachmentAddedResponse',
'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 `AppointmentAttachmentAddedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentAddedResponseDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudEF0dGFjaG1lbnRBZGRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLm'
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
'RDoforsYCFJlc3BvbnNlursYD0F0dGFjaG1lbnRBZGRlZA==');
@$core.Deprecated('Use appointmentAttachmentRemovedPayloadDescriptor instead')
const AppointmentAttachmentRemovedPayload$json = {
'1': 'AppointmentAttachmentRemovedPayload',
'2': [
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentRemovedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentRemovedPayloadDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudEF0dGFjaG1lbnRSZW1vdmVkUGF5bG9hZBJlCgtBdHRhY2htZW50cxgBIA'
'MoCzIWLmFwaS5BdHRhY2htZW50U3VtbWFyeUIrkkEoMiZOdW1iZXIgb2YgYXR0YWNobWVudHMg'
'cmVtb3ZlZCBwZXIgdHlwZVILQXR0YWNobWVudHM6IqK7GAVFdmVudKi7GAG6uxgRQXR0YWNobW'
'VudFJlbW92ZWQ=');
@$core.Deprecated('Use appointmentAttachmentRemovedEventDescriptor instead')
const AppointmentAttachmentRemovedEvent$json = {
'1': 'AppointmentAttachmentRemovedEvent',
'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.AppointmentAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentRemovedEventDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudEF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYX'
'BpLkV2ZW50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0'
'eUlEQgj6QgWKAQIQAVICSUQSTAoHUGF5bG9hZBgDIAEoCzIoLmFwaS5BcHBvaW50bWVudEF0dG'
'FjaG1lbnRSZW1vdmVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFB'
'dHRhY2htZW50UmVtb3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
@$core.Deprecated('Use appointmentAttachmentRemovedRequestDescriptor instead')
const AppointmentAttachmentRemovedRequest$json = {
'1': 'AppointmentAttachmentRemovedRequest',
'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.AppointmentAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `AppointmentAttachmentRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentRemovedRequestDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudEF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS'
'5hcGkuUmVxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsy'
'DS5hcGkuRW50aXR5SURCCPpCBYoBAhABUgJJRBJMCgdQYXlsb2FkGAMgASgLMiguYXBpLkFwcG'
'9pbnRtZW50QXR0YWNobWVudFJlbW92ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEa'
'ChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3'
'ZlZA==');
@$core.Deprecated('Use appointmentAttachmentRemovedResponseDescriptor instead')
const AppointmentAttachmentRemovedResponse$json = {
'1': 'AppointmentAttachmentRemovedResponse',
'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 `AppointmentAttachmentRemovedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentAttachmentRemovedResponseDescriptor = $convert.base64Decode(
'CiRBcHBvaW50bWVudEF0dGFjaG1lbnRSZW1vdmVkUmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMh'
'MuYXBpLlJlc3BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURS'
'AklEOiGiuxgIUmVzcG9uc2W6uxgRQXR0YWNobWVudFJlbW92ZWQ=');
@$core.Deprecated('Use appointmentCarrierInformationUpdatedPayloadDescriptor instead')
const AppointmentCarrierInformationUpdatedPayload$json = {
'1': 'AppointmentCarrierInformationUpdatedPayload',

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.11.0-SNAPSHOT-250728081546
version: 1.11.0-SNAPSHOT-250728091532
homepage: ''
publish_to: ''
repository: ''