LandlinePhone
public struct LandlinePhone : Hashable
Represents data related to specific landline phone number.
-
The phone number.
Declaration
Swift
public var phoneNumber: String -
Categories associated with phone number. Note: In case
LandlinePhone.categoriesare not empty, thenLandlinePhone.phoneNumbershould be used according to given categories. Otherwise,LandlinePhone.phoneNumberis meant for general use.Declaration
Swift
public var categories: [PlaceCategory] -
Creates a new instance.
Declaration
Swift
public init() -
Creates a new instance.
Declaration
Swift
public init(phoneNumber: String, categories: [PlaceCategory])