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
6 changes: 6 additions & 0 deletions billing/v1/billing.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,9 @@ message CreateBillingGroupRequest {

// Optional. Company's country
string country = 19;

// Optional. Invoice Layout Config Id.
string invoiceLayoutConfigId = 20;
}

message AwsOptions {
Expand Down Expand Up @@ -3165,6 +3168,9 @@ message UpdateBillingGroupInvoiceSettingsRequest {
optional string billingTitle = 2;
optional string calculationType = 3;
optional string language = 4;

// Optional. Invoice Layout Config Id.
optional string invoiceLayoutConfigId = 5;
}

message UpdateBillingGroupResellerChargesRequest {
Expand Down
8 changes: 8 additions & 0 deletions openapiv2/apidocs.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -22795,6 +22795,10 @@
},
"language": {
"type": "string"
},
"invoiceLayoutConfigId": {
"type": "string",
"description": "Optional. Invoice Layout Config Id."
}
}
},
Expand Down Expand Up @@ -37391,6 +37395,10 @@
"country": {
"type": "string",
"title": "Optional. Company's country"
},
"invoiceLayoutConfigId": {
"type": "string",
"description": "Optional. Invoice Layout Config Id."
}
},
"description": "Request message for the Billing.CreateBillingGroup rpc."
Expand Down
Loading