Last active
September 7, 2020 15:56
-
-
Save ArnauMrJeff/1c7ec6613e81663c15ac2c8892b63424 to your computer and use it in GitHub Desktop.
Apple ID Sign In: ListApplePublicKey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.fasterxml.jackson.annotation.JsonProperty; | |
public final class ListApplePublicKey { | |
private final List<ApplePublicKey> keys; | |
public ListApplePublicKey(@JsonProperty("keys") List<ApplePublicKey> keys) { | |
this.keys = keys; | |
} | |
public List<ApplePublicKey> getKeys() { | |
return keys; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment