LaunchGateParser
public protocol LaunchGateParser
Protocol to which any configuration parser must conform.
-
Parse the configuration file into a
LaunchGateRemoteConfigurationobject.Declaration
Swift
func parse(_ jsonData: Data) -> LaunchGateConfiguration?Parameters
jsonDataThe configuration file JSON as Data.
Return Value
The resulting
LaunchGateRemoteConfigurationobject, ornilif parsing fails for any reason (i.e. malformed JSON response).
View on GitHub
LaunchGateParser Protocol Reference