Skip to content

Instantly share code, notes, and snippets.

@ArnauMrJeff
Last active September 7, 2020 15:56
Show Gist options
  • Save ArnauMrJeff/1c7ec6613e81663c15ac2c8892b63424 to your computer and use it in GitHub Desktop.
Save ArnauMrJeff/1c7ec6613e81663c15ac2c8892b63424 to your computer and use it in GitHub Desktop.
Apple ID Sign In: ListApplePublicKey
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