HereSDKTimeZoneResponse

@interface HereSDKTimeZoneResponse : NSObject

/** The location time zone. */
@property(nonatomic, readonly) NSTimeZone *timeZone;

/** Offset, in seconds, from UTC to local time, including DST offset. */
@property(nonatomic, readonly) NSTimeInterval offsetWithDst;

/** Offset, in seconds, from UTC to local time, without DST offset. */
@property(nonatomic, readonly) NSTimeInterval offsetWithoutDst;

+ (instancetype)new NS_UNAVAILABLE;
- (instancetype)init NS_UNAVAILABLE;

@end

Undocumented

  • The location time zone.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSTimeZone *_Nonnull timeZone;

    Swift

    var timeZone: TimeZone { get }
  • Offset, in seconds, from UTC to local time, including DST offset.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSTimeInterval offsetWithDst;

    Swift

    var offsetWithDst: TimeInterval { get }
  • Offset, in seconds, from UTC to local time, without DST offset.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSTimeInterval offsetWithoutDst;

    Swift

    var offsetWithoutDst: TimeInterval { get }
  • Undocumented

    Declaration

    Objective-C

    + (instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;