You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -32,6 +32,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
$core.String? carrierID,
|
||||
$core.String? carrierName,
|
||||
$core.String? reason,
|
||||
$core.bool? hasCommission,
|
||||
$core.bool? instructionAck,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
@@ -44,6 +46,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
if (carrierID != null) result.carrierID = carrierID;
|
||||
if (carrierName != null) result.carrierName = carrierName;
|
||||
if (reason != null) result.reason = reason;
|
||||
if (hasCommission != null) result.hasCommission = hasCommission;
|
||||
if (instructionAck != null) result.instructionAck = instructionAck;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -63,6 +67,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
..aOS(10, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
|
||||
..aOS(11, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
|
||||
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||
..aOB(13, _omitFieldNames ? '' : 'HasCommission', protoName: 'HasCommission')
|
||||
..aOB(14, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -152,6 +158,24 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
$core.bool hasReason() => $_has(9);
|
||||
@$pb.TagNumber(12)
|
||||
void clearReason() => $_clearField(12);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool get hasCommission => $_getBF(10);
|
||||
@$pb.TagNumber(13)
|
||||
set hasCommission($core.bool value) => $_setBool(10, value);
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool hasHasCommission() => $_has(10);
|
||||
@$pb.TagNumber(13)
|
||||
void clearHasCommission() => $_clearField(13);
|
||||
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool get instructionAck => $_getBF(11);
|
||||
@$pb.TagNumber(14)
|
||||
set instructionAck($core.bool value) => $_setBool(11, value);
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool hasInstructionAck() => $_has(11);
|
||||
@$pb.TagNumber(14)
|
||||
void clearInstructionAck() => $_clearField(14);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
|
||||
Reference in New Issue
Block a user