You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -46,6 +46,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$dateUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($0.AppointmentCommissionsUpdatedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$commissionsUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$carrierInformationUpdated, request, options: options);
|
||||
}
|
||||
@@ -104,6 +108,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
'/api.AppointmentInputAPI/DateUpdated',
|
||||
($0.AppointmentDateUpdatedRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentDateUpdatedResponse.fromBuffer);
|
||||
static final _$commissionsUpdated = $grpc.ClientMethod<$0.AppointmentCommissionsUpdatedRequest, $0.AppointmentCommissionsUpdatedResponse>(
|
||||
'/api.AppointmentInputAPI/CommissionsUpdated',
|
||||
($0.AppointmentCommissionsUpdatedRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentCommissionsUpdatedResponse.fromBuffer);
|
||||
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
|
||||
'/api.AppointmentInputAPI/CarrierInformationUpdated',
|
||||
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
|
||||
@@ -176,6 +184,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentDateUpdatedRequest.fromBuffer(value),
|
||||
($0.AppointmentDateUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentCommissionsUpdatedRequest, $0.AppointmentCommissionsUpdatedResponse>(
|
||||
'CommissionsUpdated',
|
||||
commissionsUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentCommissionsUpdatedRequest.fromBuffer(value),
|
||||
($0.AppointmentCommissionsUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
|
||||
'CarrierInformationUpdated',
|
||||
carrierInformationUpdated_Pre,
|
||||
@@ -273,6 +288,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.AppointmentDateUpdatedResponse> dateUpdated($grpc.ServiceCall call, $0.AppointmentDateUpdatedRequest request);
|
||||
|
||||
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCommissionsUpdatedRequest> $request) async {
|
||||
return commissionsUpdated($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($grpc.ServiceCall call, $0.AppointmentCommissionsUpdatedRequest 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