mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-19 23:00:59 +00:00
31 lines
683 B
Swift
31 lines
683 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct Instance: Codable, Hashable {
|
||
|
struct URLs: Codable, Hashable {
|
||
|
let streamingApi: URL
|
||
|
}
|
||
|
|
||
|
struct Stats: Codable, Hashable {
|
||
|
let userCount: Int
|
||
|
let statusCount: Int
|
||
|
let domainCount: Int
|
||
|
}
|
||
|
|
||
|
let uri: String
|
||
|
let title: String
|
||
|
let description: String
|
||
|
let shortDescription: String?
|
||
|
let email: String
|
||
|
let version: String
|
||
|
let languages: [String]
|
||
|
let registrations: Bool?
|
||
|
let approvalRequired: Bool?
|
||
|
let invitesEnabled: Bool?
|
||
|
let urls: URLs
|
||
|
let stats: Stats
|
||
|
let thumbnail: URL?
|
||
|
let contactAccount: Account?
|
||
|
}
|