metatext/Mastodon/Sources/Mastodon/Entities/PushNotification.swift

14 lines
387 B
Swift
Raw Normal View History

2020-08-30 23:33:11 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct PushNotification: Codable {
public let accessToken: String
public let body: String
public let title: String
2021-03-29 06:04:14 +00:00
public let icon: UnicodeURL
2020-08-30 23:33:11 +00:00
public let notificationId: Int
2021-02-04 05:24:00 +00:00
public let notificationType: MastodonNotification.NotificationType
2020-08-30 23:33:11 +00:00
public let preferredLocale: String
}