We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7eea00 commit f673dc2Copy full SHA for f673dc2
Sources/AWSLambdaEvents/SES.swift
@@ -49,7 +49,7 @@ public enum SES {
49
public struct CommonHeaders: Decodable {
50
public let bcc: [String]?
51
public let cc: [String]?
52
- @DateTimeCoding public var date: Date
+ @RFC5322DateTimeCoding public var date: Date
53
public let from: [String]
54
public let messageId: String
55
public let returnPath: String?
Sources/AWSLambdaEvents/Utils/DateWrappers.swift
@@ -71,7 +71,7 @@ public struct ISO8601WithFractionalSecondsCoding: Decodable {
71
}
72
73
@propertyWrapper
74
-public struct DateTimeCoding: Decodable {
+public struct RFC5322DateTimeCoding: Decodable {
75
public let wrappedValue: Date
76
77
public init(wrappedValue: Date) {
0 commit comments