Country
public struct Country : Codable, EquatableStruct representing a country.
- 
                  
                  The name of the country. DeclarationSwift public var name: String
- 
                  
                  The code for the name of the country. DeclarationSwift public var code: String
- 
                  
                  An array of states the country has. DeclarationSwift public var states: [State]
- 
                  
                  Undocumented DeclarationSwift public init(name: String, code: String, states: [State])
- 
                  
                  Struct representing a state of a country. See moreDeclarationSwift public struct State : Codable, Equatable
- 
                  
                  DeclarationSwift public init(from decoder: Decoder) throws
 View on GitHub
View on GitHub Country Structure Reference
        Country Structure Reference