TTPoi

@interface TTPoi : NSObject

Represents a poi field in a json response.

  • The name of the POI.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nonnull name;

    Swift

    var name: String { get }
  • The phone number of the POI.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nullable phone;

    Swift

    var phone: String? { get }
  • url

    The url of the POI.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSString *_Nullable url;

    Swift

    var url: String? { get }
  • A list of brands the POI belongs to.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSArray<NSString *> *_Nonnull brands;

    Swift

    var brands: [String] { get }
  • A list of categories the POI belongs to.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic) NSArray<NSString *> *_Nonnull categories;

    Swift

    var categories: [String] { get }
  • A list of classifications the POI belongs to.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic)
        NSArray<TTClassification *> *_Nonnull classifications;

    Swift

    var classifications: [TTClassification] { get }