|
|
|
|
@@ -645,6 +645,160 @@ class AppointmentMail extends $pb.GeneratedMessage {
|
|
|
|
|
AppointmentMailPayload ensurePreviousPayload() => $_ensure(4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
/// LockBooking : Push the appointment event to watchers
|
|
|
|
|
class AppointmentLockBookingPayload extends $pb.GeneratedMessage {
|
|
|
|
|
factory AppointmentLockBookingPayload({
|
|
|
|
|
$1.AppointmentStatusStruct? status,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (status != null) result.status = status;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppointmentLockBookingPayload._();
|
|
|
|
|
|
|
|
|
|
factory AppointmentLockBookingPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory AppointmentLockBookingPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentLockBookingPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOM<$1.AppointmentStatusStruct>(1, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $1.AppointmentStatusStruct.create)
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
AppointmentLockBookingPayload clone() => AppointmentLockBookingPayload()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
AppointmentLockBookingPayload copyWith(void Function(AppointmentLockBookingPayload) updates) => super.copyWith((message) => updates(message as AppointmentLockBookingPayload)) as AppointmentLockBookingPayload;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static AppointmentLockBookingPayload create() => AppointmentLockBookingPayload._();
|
|
|
|
|
@$core.override
|
|
|
|
|
AppointmentLockBookingPayload createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<AppointmentLockBookingPayload> createRepeated() => $pb.PbList<AppointmentLockBookingPayload>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static AppointmentLockBookingPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentLockBookingPayload>(create);
|
|
|
|
|
static AppointmentLockBookingPayload? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.AppointmentStatusStruct get status => $_getN(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set status($1.AppointmentStatusStruct value) => $_setField(1, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasStatus() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearStatus() => $_clearField(1);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$1.AppointmentStatusStruct ensureStatus() => $_ensure(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class AppointmentLockBooking extends $pb.GeneratedMessage {
|
|
|
|
|
factory AppointmentLockBooking({
|
|
|
|
|
$2.CommandHeader? header,
|
|
|
|
|
$2.EntityID? iD,
|
|
|
|
|
AppointmentLockBookingPayload? payload,
|
|
|
|
|
AppointmentLockBookingPayload? eventPayload,
|
|
|
|
|
AppointmentLockBookingPayload? previousPayload,
|
|
|
|
|
}) {
|
|
|
|
|
final result = create();
|
|
|
|
|
if (header != null) result.header = header;
|
|
|
|
|
if (iD != null) result.iD = iD;
|
|
|
|
|
if (payload != null) result.payload = payload;
|
|
|
|
|
if (eventPayload != null) result.eventPayload = eventPayload;
|
|
|
|
|
if (previousPayload != null) result.previousPayload = previousPayload;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AppointmentLockBooking._();
|
|
|
|
|
|
|
|
|
|
factory AppointmentLockBooking.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
|
|
|
factory AppointmentLockBooking.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentLockBooking', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
|
|
|
..aOM<$2.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.CommandHeader.create)
|
|
|
|
|
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
|
|
|
|
|
..aOM<AppointmentLockBookingPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentLockBookingPayload.create)
|
|
|
|
|
..aOM<AppointmentLockBookingPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: AppointmentLockBookingPayload.create)
|
|
|
|
|
..aOM<AppointmentLockBookingPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: AppointmentLockBookingPayload.create)
|
|
|
|
|
..hasRequiredFields = false
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
AppointmentLockBooking clone() => AppointmentLockBooking()..mergeFromMessage(this);
|
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
|
|
|
AppointmentLockBooking copyWith(void Function(AppointmentLockBooking) updates) => super.copyWith((message) => updates(message as AppointmentLockBooking)) as AppointmentLockBooking;
|
|
|
|
|
|
|
|
|
|
@$core.override
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static AppointmentLockBooking create() => AppointmentLockBooking._();
|
|
|
|
|
@$core.override
|
|
|
|
|
AppointmentLockBooking createEmptyInstance() => create();
|
|
|
|
|
static $pb.PbList<AppointmentLockBooking> createRepeated() => $pb.PbList<AppointmentLockBooking>();
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
|
|
static AppointmentLockBooking getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentLockBooking>(create);
|
|
|
|
|
static AppointmentLockBooking? _defaultInstance;
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$2.CommandHeader get header => $_getN(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
set header($2.CommandHeader value) => $_setField(1, value);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$core.bool hasHeader() => $_has(0);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
void clearHeader() => $_clearField(1);
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
|
|
$2.CommandHeader 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)
|
|
|
|
|
AppointmentLockBookingPayload get payload => $_getN(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
set payload(AppointmentLockBookingPayload value) => $_setField(3, value);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
$core.bool hasPayload() => $_has(2);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
void clearPayload() => $_clearField(3);
|
|
|
|
|
@$pb.TagNumber(3)
|
|
|
|
|
AppointmentLockBookingPayload ensurePayload() => $_ensure(2);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(4)
|
|
|
|
|
AppointmentLockBookingPayload get eventPayload => $_getN(3);
|
|
|
|
|
@$pb.TagNumber(4)
|
|
|
|
|
set eventPayload(AppointmentLockBookingPayload value) => $_setField(4, value);
|
|
|
|
|
@$pb.TagNumber(4)
|
|
|
|
|
$core.bool hasEventPayload() => $_has(3);
|
|
|
|
|
@$pb.TagNumber(4)
|
|
|
|
|
void clearEventPayload() => $_clearField(4);
|
|
|
|
|
@$pb.TagNumber(4)
|
|
|
|
|
AppointmentLockBookingPayload ensureEventPayload() => $_ensure(3);
|
|
|
|
|
|
|
|
|
|
@$pb.TagNumber(5)
|
|
|
|
|
AppointmentLockBookingPayload get previousPayload => $_getN(4);
|
|
|
|
|
@$pb.TagNumber(5)
|
|
|
|
|
set previousPayload(AppointmentLockBookingPayload value) => $_setField(5, value);
|
|
|
|
|
@$pb.TagNumber(5)
|
|
|
|
|
$core.bool hasPreviousPayload() => $_has(4);
|
|
|
|
|
@$pb.TagNumber(5)
|
|
|
|
|
void clearPreviousPayload() => $_clearField(5);
|
|
|
|
|
@$pb.TagNumber(5)
|
|
|
|
|
AppointmentLockBookingPayload ensurePreviousPayload() => $_ensure(4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
|
|
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
|
|
|
|
|