TKTripDayItem

@interface TKTripDayItem : NSObject

Trip Day Item model.

  • Item ID.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic) NSString *_Nonnull placeID;

    Swift

    var placeID: String { get }
  • Timestamp (in number of seconds from the midnight) indicating the planned start time of the Item.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic, nullable) NSNumber *startTime;

    Swift

    var startTime: NSNumber? { get set }
  • Planned duration of the Item.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic, nullable) NSNumber *duration;

    Swift

    var duration: NSNumber? { get set }
  • A note string attached to the Item.

    Declaration

    Objective-C

    @property (readwrite, copy, nonatomic, nullable) NSString *note;

    Swift

    var note: String? { get set }
  • Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) TKTripTransportMode transportMode;

    Swift

    var transportMode: TKTripTransportMode { get set }