PAYErrorResponseType

@objc
public protocol PAYErrorResponseType : NSObjectProtocol

PAY.JP API error response.

  • The origin reponse’s HTTP status code.

    Declaration

    Swift

    var status: Int { get }
  • The detail message of the error.

    Declaration

    Swift

    var message: String? { get }
  • The param that caused the error happend.

    Declaration

    Swift

    var param: String? { get }
  • The code of the error. Check https://pay.jp/docs/api/#error for more details.

    Declaration

    Swift

    var code: String? { get }
  • The type of the error. Check https://pay.jp/docs/api/#error for more details.

    Declaration

    Swift

    var type: String? { get }