PayByBankNotificationOptionsResponse
public struct PayByBankNotificationOptionsResponse : Codable
-
Status of the sending email
Note
True ifsendEmailNotification
is true and email was sent successfully, otherwise falseDeclaration
Swift
public let isEmailSent: Bool?
-
Status of the sending sms
Note
True ifsendSmsNotification
is true and sms was sent successfully, otherwise falseDeclaration
Swift
public let isSmsSent: Bool?
-
Declaration
Swift
public init(isEmailSent: Bool?, isSmsSent: Bool?)