Skip to content

Commit

Permalink
Fix list local schemes in Card Metadata (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko authored Oct 8, 2024
1 parent 9c092f6 commit 4fc372f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import lombok.EqualsAndHashCode;
import lombok.ToString;

import java.util.List;

@Data
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
Expand All @@ -29,7 +31,7 @@ public final class CardMetadataResponse extends HttpMetadata {
private SchemeLocalType schemeLocal;

@SerializedName("local_schemes")
private SchemeLocalType localSchemes;
private List<SchemeLocalType> localSchemes;

@SerializedName("card_type")
private CardType cardType;
Expand Down

0 comments on commit 4fc372f

Please sign in to comment.