You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -50,6 +50,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$commissionsUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentReasonUpdatedResponse> reasonUpdated($0.AppointmentReasonUpdatedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$reasonUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$carrierInformationUpdated, request, options: options);
|
||||
}
|
||||
@@ -136,6 +140,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
'/api.AppointmentInputAPI/CommissionsUpdated',
|
||||
($0.AppointmentCommissionsUpdatedRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentCommissionsUpdatedResponse.fromBuffer);
|
||||
static final _$reasonUpdated = $grpc.ClientMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>(
|
||||
'/api.AppointmentInputAPI/ReasonUpdated',
|
||||
($0.AppointmentReasonUpdatedRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentReasonUpdatedResponse.fromBuffer);
|
||||
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
|
||||
'/api.AppointmentInputAPI/CarrierInformationUpdated',
|
||||
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
|
||||
@@ -239,6 +247,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentCommissionsUpdatedRequest.fromBuffer(value),
|
||||
($0.AppointmentCommissionsUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>(
|
||||
'ReasonUpdated',
|
||||
reasonUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentReasonUpdatedRequest.fromBuffer(value),
|
||||
($0.AppointmentReasonUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
|
||||
'CarrierInformationUpdated',
|
||||
carrierInformationUpdated_Pre,
|
||||
@@ -384,6 +399,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($grpc.ServiceCall call, $0.AppointmentCommissionsUpdatedRequest request);
|
||||
|
||||
$async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentReasonUpdatedRequest> $request) async {
|
||||
return reasonUpdated($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated($grpc.ServiceCall call, $0.AppointmentReasonUpdatedRequest request);
|
||||
|
||||
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async {
|
||||
return carrierInformationUpdated($call, await $request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user