File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
/// An object that contains an array of messages.
2
2
///
3
3
/// See: [`LogEntries`](https://developer.apple.com/documentation/walletpasses/logentries)
4
- public struct LogEntriesDTO : Codable {
4
+ public struct LogEntriesDTO : Codable , Sendable {
5
5
/// An array of log messages.
6
6
public let logs : [ String ]
7
7
Original file line number Diff line number Diff line change 1
1
/// An object that contains the push notification token for a registered pass on a device.
2
2
///
3
3
/// See: [`PushToken`](https://developer.apple.com/documentation/walletpasses/pushtoken)
4
- public struct PushTokenDTO : Codable {
4
+ public struct PushTokenDTO : Codable , Sendable {
5
5
/// A push token the server uses to send update notifications for a registered pass to a device.
6
6
public let pushToken : String
7
7
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import struct Foundation.Date
3
3
/// The unique identifiers associated with orders.
4
4
///
5
5
/// See: [`OrderIdentifiers`](https://developer.apple.com/documentation/walletorders/orderidentifiers)
6
- public struct OrderIdentifiersDTO : Codable {
6
+ public struct OrderIdentifiersDTO : Codable , Sendable {
7
7
/// An array of order identifer strings.
8
8
public let orderIdentifiers : [ String ]
9
9
Original file line number Diff line number Diff line change 1
1
/// An object that contains the information you use to personalize a pass.
2
2
///
3
3
/// See: [`PersonalizationDictionary`](https://developer.apple.com/documentation/walletpasses/personalizationdictionary)
4
- public struct PersonalizationDictionaryDTO : Codable {
4
+ public struct PersonalizationDictionaryDTO : Codable , Sendable {
5
5
/// The personalization token for this request. The server must sign and return the token.
6
6
public let personalizationToken : String
7
7
@@ -19,7 +19,7 @@ public struct PersonalizationDictionaryDTO: Codable {
19
19
/// An object that contains the user-entered information for a personalized pass.
20
20
///
21
21
/// See: [`RequiredPersonalizationInfo`](https://developer.apple.com/documentation/walletpasses/personalizationdictionary/requiredpersonalizationinfo-data.dictionary)
22
- public struct RequiredPersonalizationInfo : Codable {
22
+ public struct RequiredPersonalizationInfo : Codable , Sendable {
23
23
/// The user-entered email address for the user of the personalized pass.
24
24
public let emailAddress : String ?
25
25
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import struct Foundation.Date
3
3
/// An object that contains serial numbers for the updatable passes on a device.
4
4
///
5
5
/// See: [`SerialNumbers`](https://developer.apple.com/documentation/walletpasses/serialnumbers)
6
- public struct SerialNumbersDTO : Codable {
6
+ public struct SerialNumbersDTO : Codable , Sendable {
7
7
/// A developer-defined string that contains a tag that indicates the modification time for the returned passes.
8
8
public let lastUpdated : String
9
9
You can’t perform that action at this time.
0 commit comments