ft/adds email_address and phone_number tables ft/adds email and phone endpoints ft/adds account_level query
30 lines
746 B
Protocol Buffer
30 lines
746 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
|
|
|
option go_package = "github.com/itsscb/df/pb";
|
|
|
|
message DeleteEmailAddressRequest {
|
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
|
json_schema: {
|
|
title: "Delete EmailAddress";
|
|
description: "Delete an EmailAddress";
|
|
required: [
|
|
"id"
|
|
];
|
|
};
|
|
};
|
|
uint64 id = 1;
|
|
}
|
|
|
|
message DeleteEmailAddressResponse {
|
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
|
json_schema: {
|
|
title: "Deleted EmailAddress";
|
|
};
|
|
};
|
|
uint64 id = 1 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
|
}];
|
|
} |