WOVAddressObject
@objc final public class WOVAddressObject: NSObject, NSSecureCoding
The model that represents WOVER user’s address.
-
The type of the address. Possible values home, work and other.
Declaration
Swift
public let type: String
-
The user’s address city.
Declaration
Swift
public let city: String
-
The user’s address state.
Declaration
Swift
public let state: String
-
An array with street address.
Declaration
Swift
public let street: [String]
-
The user’s address country.
Declaration
Swift
public let country: String
-
The user’s address postal code.
Declaration
Swift
public let postalCode: String
-
A boolean indicating if it is user’s primary address.
Declaration
Swift
public fileprivate(set) var isPrimary: Bool = false
-
A boolean indicating if NSSecureCoding is supported or not.
Declaration
Swift
public static var supportsSecureCoding: Bool
-
/////////////////////////////////////////////////////////////////////////
Declaration
Swift
public func encode(with aCoder: NSCoder)
-
/////////////////////////////////////////////////////////////////////////
Declaration
Swift
public init?(coder aDecoder: NSCoder)