metatext-app-ios-iphone-ipad/Mastodon/Sources/Mastodon/Entities/PushNotification.swift

14 lines
387 B
Swift
Raw Normal View History

2020-08-31 01:33:11 +02: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 08:04:14 +02:00
public let icon: UnicodeURL
2020-08-31 01:33:11 +02:00
public let notificationId: Int
2021-02-04 06:24:00 +01:00
public let notificationType: MastodonNotification.NotificationType
2020-08-31 01:33:11 +02:00
public let preferredLocale: String
}