From 9523750e48b8633dd01b7cdc260be6167a3ec06a Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 23 Apr 2023 14:05:53 +0200 Subject: [PATCH] Written the documentation for the Game model. --- Sources/Models/Game.swift | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Sources/Models/Game.swift b/Sources/Models/Game.swift index 304267d..9457bb6 100644 --- a/Sources/Models/Game.swift +++ b/Sources/Models/Game.swift @@ -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 { + + // MARK: Properties + + /// The list of identifiers associated to the game. public let ids: [String] + + /// The name of the game. public let name: String + + /// The list of usages that explains how the amiibo is being used in the game. public let usage: [Usage]? + } // MARK: - Decodable