RawResponse
public struct RawResponse : Codable, SendableRepresents the raw response of an error.
- 
                  
                  The unique identifier of the error. DeclarationSwift public let id: String?
- 
                  
                  The error code. DeclarationSwift public let code: String?
- 
                  
                  A message describing the error. DeclarationSwift public let message: String?
- 
                  
                  Additional error details. DeclarationSwift public let details: [ErrorDetail]?
- 
                  
                  Initializes a RawResponseobject from a dictionary.Throws SerializationError.invalidFormatif required fields are missing or invalid.DeclarationSwift public init(dictionary: [String : Any]) throwsParametersdictionaryA dictionary containing the raw response data. 
 View on GitHub
            View on GitHub
          