diff --git a/vorgang-manager-interface/src/main/protobuf/file.model.proto b/vorgang-manager-interface/src/main/protobuf/file.model.proto index 0e82120cb1870ae28f60ebd314d6257b76178042..c78f2f8332f50132ac678dd60734fcf9e6efbe1e 100644 --- a/vorgang-manager-interface/src/main/protobuf/file.model.proto +++ b/vorgang-manager-interface/src/main/protobuf/file.model.proto @@ -32,16 +32,19 @@ option java_outer_classname = "FileModelProto"; message GrpcGetAttachmentsRequest { - de.ozgcloud.vorgang.grpc.command.GrpcCallContext context = 1; + de.ozgcloud.vorgang.grpc.command.GrpcCallContext context = 1 [deprecated = true]; string eingangId = 2; + string vorgangId = 3; } + message GrpcGetAttachmentsResponse { repeated GrpcOzgFile file = 1; } message GrpcGetRepresentationsRequest { - de.ozgcloud.vorgang.grpc.command.GrpcCallContext context = 1; + de.ozgcloud.vorgang.grpc.command.GrpcCallContext context = 1 [deprecated = true]; string eingangId = 2; + string vorgangId = 3; } message GrpcGetRepresentationsResponse { repeated GrpcOzgFile file = 1;