AWFTide

Objective-C

@interface AWFTide : AWFGeographicObject

Swift

class AWFTide : AWFGeographicObject

An AWFTide object represents data returned by the tides endpoint of the Aeris Weather API.

  • Station identifier that the tide data is based on.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *stationId;

    Swift

    var stationId: String? { get set }
  • Array of AWFTidePeriod instances that contain the tidal information, where each object is for a specific tidal period (high, low etc).

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSArray<AWFTidePeriod *> *periods;

    Swift

    var periods: [AWFTidePeriod]? { get set }