payment recipient data

This commit is contained in:
Stephan D
2025-12-26 15:14:31 +01:00
parent 3836ff5ef3
commit 8adfab94b5
20 changed files with 442 additions and 68 deletions

View File

@@ -112,6 +112,20 @@ message PaymentIntent {
fees.v1.PolicyOverrides fee_policy = 7;
map<string, string> attributes = 8;
SettlementMode settlement_mode = 9;
Customer customer = 10;
}
message Customer {
string id = 1;
string first_name = 2;
string middle_name = 3;
string last_name = 4;
string ip = 5;
string zip = 6;
string country = 7;
string state = 8;
string city = 9;
string address = 10;
}
message PaymentQuote {