Country

struct Country : Hashable
extension EUDCC.Country: Codable

The EUDCC Country

Properties

  • The string value

    Declaration

    Swift

    public let value: String

Initializer

  • Creates a new instance of EUDCC.Test.Country

    Declaration

    Swift

    public init(value: String)

    Parameters

    value

    The string value

Localized String

  • Localized string of Country

    Declaration

    Swift

    func localizedString(
        locale: Locale = .current
    ) -> String?

    Parameters

    locale

    The Locale. Default value .current

Codable

  • Creates a new instance by decoding from the given decoder.

    Declaration

    Swift

    public init(from decoder: Decoder) throws

    Parameters

    decoder

    The decoder to read data from.

  • Encodes this value into the given encoder.

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws

    Parameters

    encoder

    The encoder to write data to.