Coverage Summary for Class: MessageHandlingState (cloud.mindbox.mobile_sdk.pushes.handler)

Class Class, % Method, % Branch, % Line, % Instruction, %
MessageHandlingState 0% (0/1) 0% (0/1) 0% (0/3) 0% (0/12)


 package cloud.mindbox.mobile_sdk.pushes.handler
 
 /**
  * Current conditions under which the image is loaded
  *
  * @param attemptNumber The current number of attempts to correctly process the notification
  * @param isMessageDisplayed The message has been shown
  */
 public data class MessageHandlingState(
     val attemptNumber: Int,
     val isMessageDisplayed: Boolean,
 )