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
4 changes: 2 additions & 2 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6941,7 +6941,7 @@
},
{
"name": "period_start",
"description": "PeriodStart is the start date of this subscription",
"description": "PeriodStart is the start date of the time frame covered by this invoice",
"label": "",
"type": "Timestamp",
"longType": "google.protobuf.Timestamp",
Expand All @@ -6953,7 +6953,7 @@
},
{
"name": "period_end",
"description": "PeriodEnd is the end date of this subscription",
"description": "PeriodEnd is the end date of the time frame covered by this invoice",
"label": "",
"type": "Timestamp",
"longType": "google.protobuf.Timestamp",
Expand Down
4 changes: 2 additions & 2 deletions go/api/v1/payment.pb.go

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

4 changes: 2 additions & 2 deletions js/api/v1/payment_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,13 +294,13 @@ export type Invoice = Message<"api.v1.Invoice"> & {
*/
pdfDownloadUrl: string;
/**
* PeriodStart is the start date of this subscription
* PeriodStart is the start date of the time frame covered by this invoice
*
* @generated from field: google.protobuf.Timestamp period_start = 4;
*/
periodStart?: Timestamp;
/**
* PeriodEnd is the end date of this subscription
* PeriodEnd is the end date of the time frame covered by this invoice
*
* @generated from field: google.protobuf.Timestamp period_end = 5;
*/
Expand Down
4 changes: 2 additions & 2 deletions js/api/v1/payment_pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,14 +352,14 @@ export type Invoice = Message<"api.v1.Invoice"> & {
pdfDownloadUrl: string;

/**
* PeriodStart is the start date of this subscription
* PeriodStart is the start date of the time frame covered by this invoice
*
* @generated from field: google.protobuf.Timestamp period_start = 4;
*/
periodStart?: Timestamp;

/**
* PeriodEnd is the end date of this subscription
* PeriodEnd is the end date of the time frame covered by this invoice
*
* @generated from field: google.protobuf.Timestamp period_end = 5;
*/
Expand Down
4 changes: 2 additions & 2 deletions proto/api/v1/payment.proto
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ message Invoice {
string id = 1;
// PdfDownloadUrl is the url where the customer can download this invoice in pdf format
string pdf_download_url = 2;
// PeriodStart is the start date of this subscription
// PeriodStart is the start date of the time frame covered by this invoice
google.protobuf.Timestamp period_start = 4;
// PeriodEnd is the end date of this subscription
// PeriodEnd is the end date of the time frame covered by this invoice
google.protobuf.Timestamp period_end = 5;
}

Expand Down
Loading