github.com/letsencrypt/boulder@v0.20251208.0/email/proto/exporter.proto (about) 1 syntax = "proto3"; 2 3 package email; 4 option go_package = "github.com/letsencrypt/boulder/email/proto"; 5 6 import "google/protobuf/empty.proto"; 7 8 service Exporter { 9 rpc SendContacts (SendContactsRequest) returns (google.protobuf.Empty); 10 rpc SendCase (SendCaseRequest) returns (google.protobuf.Empty); 11 } 12 13 message SendContactsRequest { 14 repeated string emails = 1; 15 } 16 17 message SendCaseRequest { 18 string origin = 1; 19 string subject = 2; 20 string description = 3; 21 string contactEmail = 4; 22 string organization = 5; 23 string accountId = 6; 24 string rateLimitName = 7; 25 string rateLimitTier = 8; 26 string useCase = 9; 27 } 28