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

14 lines
380 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
public let icon: URL
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
}