2018-09-11 14:52:21 +00:00
|
|
|
//
|
|
|
|
// Hashtag.swift
|
|
|
|
// Pachyderm
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 9/9/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2018-09-17 23:22:37 +00:00
|
|
|
public class Hashtag: Decodable {
|
2018-09-11 14:52:21 +00:00
|
|
|
public let name: String
|
|
|
|
public let url: URL
|
|
|
|
public let history: [History]?
|
|
|
|
|
|
|
|
public init(name: String, url: URL) {
|
|
|
|
self.name = name
|
|
|
|
self.url = url
|
|
|
|
self.history = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case name
|
|
|
|
case url
|
|
|
|
case history
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Hashtag {
|
|
|
|
public class History: Decodable {
|
|
|
|
public let day: Date
|
|
|
|
public let uses: Int
|
|
|
|
public let accounts: Int
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case day
|
|
|
|
case uses
|
|
|
|
case accounts
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|