class GeolocationTimezone

Attributes

currentTime[R]
dstSavings[R]
isDST[R]
name[R]
offset[R]

Public Class Methods

new(json) click to toggle source
# File lib/ipgeolocation_io/GeolocationTimezone.rb, line 9
def initialize(json)
  @name = json["name"];
  @offset = json["offset"];
  @currentTime = json["current_time"];
  @isDST = json["is_dst"];
  @dstSavings = json["dst_savings"];
end