Created
March 7, 2020 22:30
-
-
Save lapinek/d500042c123f20d36e3a52b687adfc39 to your computer and use it in GitHub Desktop.
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
// AuthenticationResponse.swift | |
import Foundation | |
/** | |
Container for JSON callbacks expected from the authentication endpoint. | |
*/ | |
struct AuthenticationResponse: Codable { | |
struct Callback: Codable { | |
let type: String? | |
} | |
let authId: String? | |
var callbacks: [Callback] = [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment