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 a609d3a commit a96a3daCopy full SHA for a96a3da
Sources/SwiftApiAdapter/Model.swift
@@ -3,6 +3,11 @@ import Foundation
3
public struct ApiContentRack {
4
public var id: UUID = UUID()
5
public var arguments: [String: String] = [String: String]()
6
+
7
+ public init(id: UUID = UUID(), arguments: [String: String] = [String: String]()) {
8
+ self.id = id
9
+ self.arguments = arguments
10
+ }
11
}
12
13
public enum HttpMethod: String, Codable, CaseIterable {
0 commit comments