18 lines
303 B
Swift
18 lines
303 B
Swift
|
import Foundation
|
||
|
|
||
|
/**
|
||
|
An object to update the push token of a device.
|
||
|
*/
|
||
|
struct PushTokenUpdate {
|
||
|
|
||
|
/// The authentication of the requesting device.
|
||
|
let device: DeviceAuthentication
|
||
|
|
||
|
/// The new push token to register
|
||
|
let newToken: PushToken
|
||
|
}
|
||
|
|
||
|
extension PushTokenUpdate: Codable {
|
||
|
|
||
|
}
|