UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

23 lines (19 loc) 413 B
// this file is @generated export interface HttpAttemptTimes { end: Date; start: Date; } export const HttpAttemptTimesSerializer = { _fromJsonObject(object: any): HttpAttemptTimes { return { end: new Date(object["end"]), start: new Date(object["start"]), }; }, _toJsonObject(self: HttpAttemptTimes): any { return { end: self.end, start: self.start, }; }, };