APIService
public struct APIService<ResponseType> where ResponseType : APIResponseValue
extension APIService: CustomStringConvertible
                Undocumented
- 
                  
                  
Undocumented
Declaration
Swift
public let id: String - 
                  
                  
Undocumented
Declaration
Swift
public let tag: String - 
                  
                  
Undocumented
Declaration
Swift
public let method: String - 
                  
                  
Undocumented
Declaration
Swift
public let path: String - 
                  
                  
Undocumented
Declaration
Swift
public let hasBody: Bool - 
                  
                  
Undocumented
Declaration
Swift
public let isUpload: Bool - 
                  
                  
Undocumented
Declaration
Swift
public let securityRequirements: [SecurityRequirement] - 
                  
                  
Undocumented
Declaration
Swift
public init(id: String, tag: String = "", method: String, path: String, hasBody: Bool, isUpload: Bool = false, securityRequirements: [SecurityRequirement] = []) - 
                  
                  
Undocumented
Declaration
Swift
public var name: String { get } - 
                  
                  
Declaration
Swift
public var description: String { get } 
- 
                  
                  
Undocumented
Declaration
Swift
public func asAny() -> APIService<AnyResponseValue> 
View on GitHub
        APIService Structure Reference