ResubNotification

@Serializable
data class ResubNotification(val cumulativeMonths: Int = 0, val durationMonths: Int = 0, val streakMonths: Int = 0, val subTier: String = "", val isPrime: Boolean = false, val isGift: Boolean = false, val gifterIsAnonymous: Boolean? = null, val gifterUserId: String? = null, val gifterUserName: String? = null, val gifterUserLogin: String? = null)

Constructors

Link copied to clipboard
constructor(cumulativeMonths: Int = 0, durationMonths: Int = 0, streakMonths: Int = 0, subTier: String = "", isPrime: Boolean = false, isGift: Boolean = false, gifterIsAnonymous: Boolean? = null, gifterUserId: String? = null, gifterUserName: String? = null, gifterUserLogin: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "cumulative_months")
val cumulativeMonths: Int
Link copied to clipboard
@SerialName(value = "duration_months")
val durationMonths: Int
Link copied to clipboard
@SerialName(value = "gifter_is_anonymous")
val gifterIsAnonymous: Boolean?
Link copied to clipboard
@SerialName(value = "gifter_user_id")
val gifterUserId: String?
Link copied to clipboard
@SerialName(value = "gifter_user_login")
val gifterUserLogin: String?
Link copied to clipboard
@SerialName(value = "gifter_user_name")
val gifterUserName: String?
Link copied to clipboard
@SerialName(value = "is_gift")
val isGift: Boolean
Link copied to clipboard
@SerialName(value = "is_prime")
val isPrime: Boolean
Link copied to clipboard
@SerialName(value = "streak_months")
val streakMonths: Int
Link copied to clipboard
@SerialName(value = "sub_tier")
val subTier: String