TimeType

public struct TimeType : Codable

TimeType

See also

TimeType
  • Date and time, split up into components. The element is only present, if the verbosetime parameter is set to 1.

    Declaration

    Swift

    public let datetime: Date?
  • iso

    ISO representation of date and time, time zone included (see [ISO8601]) if different from UTC. If time is not applicable, only the date is shown.

       Example: 2011-06-08T09:18:16+02:00
       Example: 2011-06-08T07:18:16 (UTC time)
       Example: 2011-06-08 (only date)
       Type: String/ISO8601 Timestamp
    

    Declaration

    Swift

    public let iso: Date?
  • Timezone information. Element is only present if different from UTC and requested by the caller (parameter tz).

    Declaration

    Swift

    public let timezone: TimeZoneType?