[Setup] Documentation #10

Merged
javier merged 12 commits from setup/documentation into main 2023-04-23 13:16:23 +00:00
Showing only changes of commit 9523750e48 - Show all commits

View File

@ -1,7 +1,17 @@
/// This model structs represents a game that is related to an amiibo, when requested to the respective [remote API endpoint](https://www.amiiboapi.com/docs/#showGames).
public struct Game { public struct Game {
// MARK: Properties
/// The list of identifiers associated to the game.
public let ids: [String] public let ids: [String]
/// The name of the game.
public let name: String public let name: String
/// The list of usages that explains how the amiibo is being used in the game.
public let usage: [Usage]? public let usage: [Usage]?
} }
// MARK: - Decodable // MARK: - Decodable