Source
public class Source : APIModel
An object containing references to the source of the error.
-
A string indicating which URI query parameter caused the error.
Declaration
Swift
public var parameter: String? -
A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. “/data” for a primary data object, or “/data/attributes/title” for a specific attribute].
Declaration
Swift
public var pointer: String? -
Undocumented
Declaration
Swift
public init(parameter: String? = nil, pointer: String? = nil) -
Declaration
Swift
public required init(from decoder: Decoder) throws -
Declaration
Swift
public func encode(to encoder: Encoder) throws -
Undocumented
Declaration
Swift
public func isEqual(to object: Any?) -> Bool -
Declaration
Swift
public static func == (lhs: Source, rhs: Source) -> Bool
View on GitHub
Source Class Reference