PGTimeWithZone

Represents PostgreSQL Time with TimeZone. Time zone is stored as UTC offset in seconds without DST.

struct PGTimeWithZone {
int hour;
int minute;
int second;
int timeZoneOffset;
}

Meta