Skip to content

Commit

Permalink
Fix localSchemes type (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko authored Apr 16, 2024
1 parent f24607b commit 023af27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CheckoutSdk/Metadata/Card/CardMetadataResponse.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using Checkout.Common;
using System;
using System.Collections.Generic;

namespace Checkout.Metadata.Card
{
Expand All @@ -12,7 +13,7 @@ public class CardMetadataResponse : HttpMetadata
[Obsolete("This property will be removed in the future, and should not be used. Use LocalSchemes instead.", false)]
public SchemeLocalType? SchemeLocal { get; set; }

public SchemeLocalType? LocalSchemes { get; set; }
public IList<SchemeLocalType> LocalSchemes { get; set; }

public CardMetadataType? CardType { get; set; }

Expand Down

0 comments on commit 023af27

Please sign in to comment.