Push-Definitions/Sources/PushAPI/AdminRequest.swift

14 lines
318 B
Swift
Raw Normal View History

2022-06-07 17:03:29 +02:00
import Foundation
/**
Authentication used to request application changes by an administrator
*/
public struct AdminRequest: Codable {
/// The SHA-256 hash of the admin key
public let keyHash: Data
/// The application id with which the request is associated
public let application: ApplicationId
}