You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -34,6 +34,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
$core.bool? hasCommission,
|
||||
$core.bool? instructionAck,
|
||||
$core.Iterable<$2.MetadataElement>? carrierInformation,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
@@ -48,6 +49,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
if (hasCommission != null) result.hasCommission = hasCommission;
|
||||
if (instructionAck != null) result.instructionAck = instructionAck;
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -69,6 +71,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
..aOB(13, _omitFieldNames ? '' : 'HasCommission', protoName: 'HasCommission')
|
||||
..aOB(14, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
||||
..pc<$2.MetadataElement>(15, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
|
||||
..aOS(16, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -176,6 +179,15 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
/// Carrier information metadata
|
||||
@$pb.TagNumber(15)
|
||||
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(11);
|
||||
|
||||
@$pb.TagNumber(16)
|
||||
$core.String get actorID => $_getSZ(12);
|
||||
@$pb.TagNumber(16)
|
||||
set actorID($core.String value) => $_setString(12, value);
|
||||
@$pb.TagNumber(16)
|
||||
$core.bool hasActorID() => $_has(12);
|
||||
@$pb.TagNumber(16)
|
||||
void clearActorID() => $_clearField(16);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -397,7 +409,13 @@ class AppointmentCreatedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentCanceledPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCanceledPayload() => create();
|
||||
factory AppointmentCanceledPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentCanceledPayload._();
|
||||
|
||||
@@ -405,6 +423,7 @@ class AppointmentCanceledPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCanceledPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCanceledPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -424,6 +443,15 @@ class AppointmentCanceledPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCanceledPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCanceledPayload>(create);
|
||||
static AppointmentCanceledPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -647,9 +675,11 @@ class AppointmentCanceledResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentSlotUpdatedPayload({
|
||||
$1.Slot? slot,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (slot != null) result.slot = slot;
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -660,6 +690,7 @@ class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentSlotUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.Slot>(1, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $1.Slot.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -690,6 +721,15 @@ class AppointmentSlotUpdatedPayload extends $pb.GeneratedMessage {
|
||||
void clearSlot() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.Slot ensureSlot() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -912,9 +952,11 @@ class AppointmentSlotUpdatedResponse extends $pb.GeneratedMessage {
|
||||
/// Event Payload
|
||||
class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCommissionsUpdatedPayload({
|
||||
$core.String? actorID,
|
||||
$core.Iterable<$1.AppointmentCommission>? commissions,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (commissions != null) result.commissions.addAll(commissions);
|
||||
return result;
|
||||
}
|
||||
@@ -925,6 +967,7 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCommissionsUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCommissionsUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..pc<$1.AppointmentCommission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $1.AppointmentCommission.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
@@ -946,8 +989,17 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
|
||||
static AppointmentCommissionsUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCommissionsUpdatedPayload>(create);
|
||||
static AppointmentCommissionsUpdatedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(0);
|
||||
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -1170,9 +1222,11 @@ class AppointmentCommissionsUpdatedResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentAttachmentAddedPayload({
|
||||
$core.Iterable<$2.AttachmentSummary>? attachments,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (attachments != null) result.attachments.addAll(attachments);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1183,6 +1237,7 @@ class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
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)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1205,6 +1260,15 @@ class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
class AppointmentAttachmentAddedEvent extends $pb.GeneratedMessage {
|
||||
@@ -1424,9 +1488,11 @@ class AppointmentAttachmentAddedResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentAttachmentRemovedPayload({
|
||||
$core.Iterable<$2.AttachmentSummary>? attachments,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (attachments != null) result.attachments.addAll(attachments);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1437,6 +1503,7 @@ class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
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)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1459,6 +1526,15 @@ class AppointmentAttachmentRemovedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$2.AttachmentSummary> get attachments => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
class AppointmentAttachmentRemovedEvent extends $pb.GeneratedMessage {
|
||||
@@ -1678,9 +1754,11 @@ class AppointmentAttachmentRemovedResponse extends $pb.GeneratedMessage {
|
||||
/// Event Payload
|
||||
class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierInformationUpdatedPayload({
|
||||
$core.String? actorID,
|
||||
$core.Iterable<$2.MetadataElement>? carrierInformation,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
return result;
|
||||
}
|
||||
@@ -1691,6 +1769,7 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierInformationUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierInformationUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..pc<$2.MetadataElement>(2, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
@@ -1712,9 +1791,18 @@ class AppointmentCarrierInformationUpdatedPayload extends $pb.GeneratedMessage {
|
||||
static AppointmentCarrierInformationUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierInformationUpdatedPayload>(create);
|
||||
static AppointmentCarrierInformationUpdatedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
|
||||
/// Carrier information metadata
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(0);
|
||||
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -1936,7 +2024,13 @@ class AppointmentCarrierInformationUpdatedResponse extends $pb.GeneratedMessage
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierExpectedPayload() => create();
|
||||
factory AppointmentCarrierExpectedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentCarrierExpectedPayload._();
|
||||
|
||||
@@ -1944,6 +2038,7 @@ class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierExpectedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierExpectedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1963,6 +2058,15 @@ class AppointmentCarrierExpectedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCarrierExpectedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierExpectedPayload>(create);
|
||||
static AppointmentCarrierExpectedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -2184,7 +2288,13 @@ class AppointmentCarrierExpectedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierArrivedPayload() => create();
|
||||
factory AppointmentCarrierArrivedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentCarrierArrivedPayload._();
|
||||
|
||||
@@ -2192,6 +2302,7 @@ class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierArrivedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierArrivedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2211,6 +2322,15 @@ class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCarrierArrivedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierArrivedPayload>(create);
|
||||
static AppointmentCarrierArrivedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -2432,7 +2552,13 @@ class AppointmentCarrierArrivedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentExpeditionStartedPayload() => create();
|
||||
factory AppointmentExpeditionStartedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentExpeditionStartedPayload._();
|
||||
|
||||
@@ -2440,6 +2566,7 @@ class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentExpeditionStartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExpeditionStartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2459,6 +2586,15 @@ class AppointmentExpeditionStartedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentExpeditionStartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExpeditionStartedPayload>(create);
|
||||
static AppointmentExpeditionStartedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -2680,7 +2816,13 @@ class AppointmentExpeditionStartedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentExpeditionLoadedPayload() => create();
|
||||
factory AppointmentExpeditionLoadedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentExpeditionLoadedPayload._();
|
||||
|
||||
@@ -2688,6 +2830,7 @@ class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentExpeditionLoadedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExpeditionLoadedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2707,6 +2850,15 @@ class AppointmentExpeditionLoadedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentExpeditionLoadedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExpeditionLoadedPayload>(create);
|
||||
static AppointmentExpeditionLoadedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -2928,7 +3080,13 @@ class AppointmentExpeditionLoadedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentReceptionStartedPayload() => create();
|
||||
factory AppointmentReceptionStartedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentReceptionStartedPayload._();
|
||||
|
||||
@@ -2936,6 +3094,7 @@ class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentReceptionStartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReceptionStartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2955,6 +3114,15 @@ class AppointmentReceptionStartedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentReceptionStartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentReceptionStartedPayload>(create);
|
||||
static AppointmentReceptionStartedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -3176,7 +3344,13 @@ class AppointmentReceptionStartedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentReceptionUnloadedPayload() => create();
|
||||
factory AppointmentReceptionUnloadedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentReceptionUnloadedPayload._();
|
||||
|
||||
@@ -3184,6 +3358,7 @@ class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentReceptionUnloadedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReceptionUnloadedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -3203,6 +3378,15 @@ class AppointmentReceptionUnloadedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentReceptionUnloadedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentReceptionUnloadedPayload>(create);
|
||||
static AppointmentReceptionUnloadedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -3424,7 +3608,13 @@ class AppointmentReceptionUnloadedResponse extends $pb.GeneratedMessage {
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierDepartedPayload() => create();
|
||||
factory AppointmentCarrierDepartedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentCarrierDepartedPayload._();
|
||||
|
||||
@@ -3432,6 +3622,7 @@ class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierDepartedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCarrierDepartedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -3451,6 +3642,15 @@ class AppointmentCarrierDepartedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentCarrierDepartedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentCarrierDepartedPayload>(create);
|
||||
static AppointmentCarrierDepartedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -3673,9 +3873,11 @@ class AppointmentCarrierDepartedResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentMetaDataUpdatedPayload({
|
||||
$core.Iterable<$2.MetadataElement>? metaData,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (metaData != null) result.metaData.addAll(metaData);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -3686,6 +3888,7 @@ class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentMetaDataUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$2.MetadataElement>(1, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $2.MetadataElement.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -3709,6 +3912,15 @@ class AppointmentMetaDataUpdatedPayload extends $pb.GeneratedMessage {
|
||||
/// Metadata are characteristics specific to the site. They can be of several data form (string, integer, float, boolean or timestamp)
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$2.MetadataElement> get metaData => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
class AppointmentMetaDataUpdatedEvent extends $pb.GeneratedMessage {
|
||||
@@ -3929,9 +4141,11 @@ class AppointmentMetaDataUpdatedResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentEmailsAddedPayload({
|
||||
$core.Iterable<$core.String>? emails,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (emails != null) result.emails.addAll(emails);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -3942,6 +4156,7 @@ class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentEmailsAddedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pPS(1, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -3965,6 +4180,15 @@ class AppointmentEmailsAddedPayload extends $pb.GeneratedMessage {
|
||||
/// Contacts assigned on the appointment
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$core.String> get emails => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -4188,9 +4412,11 @@ class AppointmentEmailsAddedResponse extends $pb.GeneratedMessage {
|
||||
class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentEmailsRemovedPayload({
|
||||
$core.Iterable<$core.String>? removedEmails,
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -4201,6 +4427,7 @@ class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentEmailsRemovedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pPS(1, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -4224,6 +4451,15 @@ class AppointmentEmailsRemovedPayload extends $pb.GeneratedMessage {
|
||||
/// Contacts removed from the appointment
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$core.String> get removedEmails => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
@@ -4444,7 +4680,13 @@ class AppointmentEmailsRemovedResponse extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentSanitisedPayload() => create();
|
||||
factory AppointmentSanitisedPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentSanitisedPayload._();
|
||||
|
||||
@@ -4452,6 +4694,7 @@ class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentSanitisedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentSanitisedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -4471,6 +4714,15 @@ class AppointmentSanitisedPayload extends $pb.GeneratedMessage {
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentSanitisedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentSanitisedPayload>(create);
|
||||
static AppointmentSanitisedPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
class AppointmentSanitisedEvent extends $pb.GeneratedMessage {
|
||||
|
||||
Reference in New Issue
Block a user