|
|
|
|
@@ -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({
|
|
|
|
|
|