PayByBankNotificationOptionsResponse
public struct PayByBankNotificationOptionsResponse : Codable
Response model for notification.
-
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?
-
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.