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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ message BillingDetails {
optional string company_name = 3;
optional string billing_email = 4;
sentry_protos.billing.v1.common.v1.Address billing_address = 5;
// The customer's tax registration number (e.g. VAT ID) on file, used when
// determining tax treatment for the customer. Unset if none is on file.
optional string tax_number = 6;
}
Comment thread
dashed marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ pub struct BillingDetails {
pub billing_address: ::core::option::Option<
super::super::super::common::v1::Address,
>,
/// The customer's tax registration number (e.g. VAT ID) on file, used when
/// determining tax treatment for the customer. Unset if none is on file.
#[prost(string, optional, tag = "6")]
pub tax_number: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetBillingDetailsRequest {
Expand Down
Loading