Skip to content

Commit a10b807

Browse files
Commit via running: make Sources/campaigns
1 parent a36b3ad commit a10b807

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/campaigns/Types.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ public enum Components {
782782
case closedCount = "closed_count"
783783
case inProgressCount = "in_progress_count"
784784
}
785-
public init(from decoder: any Decoder) throws {
785+
public init(from decoder: any Swift.Decoder) throws {
786786
let container = try decoder.container(keyedBy: CodingKeys.self)
787787
self.openCount = try container.decode(
788788
Swift.Int.self,
@@ -1310,8 +1310,8 @@ public enum Operations {
13101310
}
13111311
/// - Remark: Generated from `#/paths/orgs/{org}/campaigns/POST/requestBody/json/case2`.
13121312
case case2(Operations.CampaignsCreateCampaign.Input.Body.JsonPayload.Case2Payload)
1313-
public init(from decoder: any Decoder) throws {
1314-
var errors: [any Error] = []
1313+
public init(from decoder: any Swift.Decoder) throws {
1314+
var errors: [any Swift.Error] = []
13151315
do {
13161316
self = .case1(try .init(from: decoder))
13171317
return
@@ -1330,7 +1330,7 @@ public enum Operations {
13301330
errors: errors
13311331
)
13321332
}
1333-
public func encode(to encoder: any Encoder) throws {
1333+
public func encode(to encoder: any Swift.Encoder) throws {
13341334
switch self {
13351335
case let .case1(value):
13361336
try value.encode(to: encoder)
@@ -1982,7 +1982,7 @@ public enum Operations {
19821982
case contactLink = "contact_link"
19831983
case state
19841984
}
1985-
public init(from decoder: any Decoder) throws {
1985+
public init(from decoder: any Swift.Decoder) throws {
19861986
let container = try decoder.container(keyedBy: CodingKeys.self)
19871987
self.name = try container.decodeIfPresent(
19881988
Swift.String.self,

0 commit comments

Comments
 (0)