CommunicationErrorResponse

public struct CommunicationErrorResponse : Codable, Swift.Error

The Communication Services error.

Properties

  • The Communication Services error.

    Declaration

    Swift

    public let error: ChatError

Initializers

  • Initialize a CommunicationErrorResponse structure.

    Declaration

    Swift

    public init(
        error: ChatError
    )

    Parameters

    error

    The Communication Services error.

Codable

  • Initialize a CommunicationErrorResponse structure from decoder

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Encode a CommunicationErrorResponse structure

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws