We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e0491 commit 534d6bdCopy full SHA for 534d6bd
1 file changed
Sources/Apollo/GraphQLFile.swift
@@ -2,11 +2,11 @@ import Foundation
2
3
/// A file which can be uploaded to a GraphQL server
4
public struct GraphQLFile {
5
- let fieldName: String
6
- let originalName: String
7
- let mimeType: String
8
- let inputStream: InputStream
9
- let contentLength: UInt64
+ public let fieldName: String
+ public let originalName: String
+ public let mimeType: String
+ public let inputStream: InputStream
+ public let contentLength: UInt64
10
11
/// A convenience constant for declaring your mimetype is octet-stream.
12
public static let octetStreamMimeType = "application/octet-stream"
0 commit comments