Skip to content
Draft
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 @@ -42,4 +42,7 @@ message LineItemDetails {

// The invoice line item type strings for this line item.
InvoiceMetadataTags invoice_data = 8;

// Invoice line item order. Lower values print first, unset last.
int32 display_order = 9;
}
3 changes: 3 additions & 0 deletions rust/src/sentry_protos.billing.v1.common.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ pub struct LineItemDetails {
/// The invoice line item type strings for this line item.
#[prost(message, optional, tag = "8")]
pub invoice_data: ::core::option::Option<InvoiceMetadataTags>,
/// Invoice line item order. Lower values print first, unset last.
#[prost(int32, tag = "9")]
pub display_order: i32,
}
/// Stripe-specific payment information for an organization.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
Expand Down
Loading