mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[AC-2378] Added ProviderId
to PayPal transaction model (#3995)
* Added ProviderId to PayPal transaction model * Fixed issue with parsing provider id
This commit is contained in:
parent
44412844a0
commit
73e049f878
@ -17,6 +17,7 @@ public class PayPalIPNTransactionModel
|
||||
public DateTime PaymentDate { get; }
|
||||
public Guid? UserId { get; }
|
||||
public Guid? OrganizationId { get; }
|
||||
public Guid? ProviderId { get; }
|
||||
public bool IsAccountCredit { get; }
|
||||
|
||||
public PayPalIPNTransactionModel(string formData)
|
||||
@ -72,6 +73,12 @@ public class PayPalIPNTransactionModel
|
||||
OrganizationId = organizationId;
|
||||
}
|
||||
|
||||
if (metadata.TryGetValue("provider_id", out var providerIdStr) &&
|
||||
Guid.TryParse(providerIdStr, out var providerId))
|
||||
{
|
||||
ProviderId = providerId;
|
||||
}
|
||||
|
||||
IsAccountCredit = custom.Contains("account_credit:1");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user