PayByBankNotificationOptionsResponse

public struct PayByBankNotificationOptionsResponse : Codable

Response model for notification.

  • Status of the sending email.

    Note

    True if sendEmailNotification is true and email was sent successfully, otherwise false

    Declaration

    Swift

    public let isEmailSent: Bool?
  • Status of the sending sms.

    Note

    True if sendSmsNotification is true and sms was sent successfully, otherwise false

    Declaration

    Swift

    public let isSmsSent: Bool?
  • Creates an instance from the specified parameters.

    Declaration

    Swift

    public init(isEmailSent: Bool?, isSmsSent: Bool?)

    Parameters

    isEmailSent

    Status of the sending email.

    isSmsSent

    Status of the sending sms.