Push-Definitions/Sources/PushAPI/DeviceUpdate.swift
2022-06-05 12:10:38 +02:00

14 lines
278 B
Swift

import Foundation
/**
An object to update the push token of a device.
*/
public struct PushTokenUpdate: Codable {
/// The authentication of the requesting device.
let device: DeviceAuthentication
/// The new push token to register
let newToken: PushToken
}