2023-04-18 20:03:12 +00:00
|
|
|
import Communications
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct GetLastUpdatedEndpoint: Endpoint {
|
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
|
|
|
let scheme: String = .Scheme.https
|
|
|
|
let host: String = .Host.amiiboApi
|
2023-04-19 14:33:48 +00:00
|
|
|
let port: Int? = nil
|
2023-04-18 20:03:12 +00:00
|
|
|
let path: String = .Path.lastUpdated
|
2023-04-19 14:33:48 +00:00
|
|
|
let parameters: Parameters = [:]
|
2023-04-18 20:03:12 +00:00
|
|
|
let method: HTTPRequestMethod = .get
|
|
|
|
let headers: [String : String] = [:]
|
2023-04-19 14:33:48 +00:00
|
|
|
let body: Data? = nil
|
2023-04-18 20:03:12 +00:00
|
|
|
|
|
|
|
}
|