Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "sentry_protos/billing/v1/services/contract/v1/invoice.proto";

message GetInvoiceRequest {
uint64 invoice_id = 1;
string invoice_guid = 2;
}

message GetInvoiceResponse {
Expand Down
4 changes: 3 additions & 1 deletion rust/src/sentry_protos.billing.v1.services.contract.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -495,10 +495,12 @@ pub struct Invoice {
#[prost(string, tag = "7")]
pub guid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetInvoiceRequest {
#[prost(uint64, tag = "1")]
pub invoice_id: u64,
#[prost(string, tag = "2")]
pub invoice_guid: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetInvoiceResponse {
Expand Down
Loading