File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/models-library/src/models_library
payments/src/simcore_service_payments/services
web/server/src/simcore_service_webserver/payments Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class InvoiceDataGet(BaseModel):
4545 stripe_price_id : StripePriceID
4646 stripe_tax_rate_id : StripeTaxRateID
4747 user_invoice_address : UserInvoiceAddress
48- user_name : str
48+ user_display_name : str
4949 user_email : LowerCaseEmailStr
5050
5151 class Config :
@@ -58,7 +58,7 @@ class Config:
5858 "user_invoice_address" : UserInvoiceAddress .Config .schema_extra [
5959 "examples"
6060 ][0 ],
61- "user_name " : "My Name" ,
61+ "user_display_name " : "My Name" ,
6262 "user_email" :
LowerCaseEmailStr (
"[email protected] " ),
6363 },
6464 ]
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ async def _perform_auto_recharge(
163163 wallet_id = rabbit_message .wallet_id ,
164164 wallet_name = f"id={ rabbit_message .wallet_id } " ,
165165 user_id = payment_method_db .user_id ,
166- user_name = invoice_data_get .user_name ,
166+ user_name = invoice_data_get .user_display_name ,
167167 user_email = invoice_data_get .user_email ,
168168 user_address = invoice_data_get .user_invoice_address ,
169169 stripe_price_id = invoice_data_get .stripe_price_id ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ async def get_invoice_data(
3939 stripe_price_id = product_stripe_info_get .stripe_price_id ,
4040 stripe_tax_rate_id = product_stripe_info_get .stripe_tax_rate_id ,
4141 user_invoice_address = user_invoice_address ,
42- user_name = user_info .full_name ,
42+ user_display_name = user_info .full_name ,
4343 user_email = LowerCaseEmailStr (user_info .email ),
4444 )
4545
You can’t perform that action at this time.
0 commit comments