SCMClient
public class SCMClient
Main library class
-
Undocumented
Declaration
Swift
public init(apiKey: String)
-
Get games list
Throws
SCMError.httpRequestError
when request failedThrows
SCMError.jsonParseError
when json response could not be parsedDeclaration
Swift
public static func gameList() throws -> [GameListGameField]
Return Value
Array of games available on SCM
-
Search songs by query
Throws
SCMError.httpRequestError
when request failedThrows
SCMError.jsonParseError
when json response could not be parsedDeclaration
Swift
public static func search(_ query: String) throws -> [Song]
Parameters
query
The string to search
Return Value
Array of matching
Song
s