share_ dungeon_ dungeon Detail

@Serializable
data class share_dungeon_dungeonDetail(val id: Int = 0, val gameId: Int = 0, val monsterHp: Int = 0, val monsterCurrentHp: Int = 0, val attendance: Int = 0, val successRewardType: String = "", val successRewardDelta: Int = 0, val eDate: String = "", val state: String = "", val shareType: String = "") : TrackingEvent

{v2.31.0} 던전 상세 화면에서 던전 공유하기 버튼 클릭

Constructors

Link copied to clipboard
constructor(id: Int = 0, gameId: Int = 0, monsterHp: Int = 0, monsterCurrentHp: Int = 0, attendance: Int = 0, successRewardType: String = "", successRewardDelta: Int = 0, eDate: String = "", state: String = "", shareType: String = "")

Properties

Link copied to clipboard
@SerialName(value = "attendance" )
@SerializedName(value = "attendance" )
val attendance: Int = 0
Link copied to clipboard
@SerialName(value = "e_date" )
@SerializedName(value = "e_date" )
val eDate: String
Link copied to clipboard
open val eventName: String
Link copied to clipboard
@SerialName(value = "game_id" )
@SerializedName(value = "game_id" )
val gameId: Int = 0

던전 game id

Link copied to clipboard
@SerialName(value = "id" )
@SerializedName(value = "id" )
val id: Int = 0

던전 id

Link copied to clipboard
@SerialName(value = "monster_current_hp" )
@SerializedName(value = "monster_current_hp" )
val monsterCurrentHp: Int = 0
Link copied to clipboard
@SerialName(value = "monster_hp" )
@SerializedName(value = "monster_hp" )
val monsterHp: Int = 0
Link copied to clipboard
@SerialName(value = "share_type" )
@SerializedName(value = "share_type" )
val shareType: String
Link copied to clipboard
@SerialName(value = "state" )
@SerializedName(value = "state" )
val state: String
Link copied to clipboard
@SerialName(value = "success_reward_delta" )
@SerializedName(value = "success_reward_delta" )
val successRewardDelta: Int = 0
Link copied to clipboard
@SerialName(value = "success_reward_type" )
@SerializedName(value = "success_reward_type" )
val successRewardType: String

Functions

Link copied to clipboard
fun TrackingEvent.getRule(rules: <Error class: unknown class><String, TrackingEventRule>): TrackingEventRule?
Link copied to clipboard
fun TrackingEvent.hash(): String

TrackingEvent의 hash값을 반환한다. 이름과 내용이 같다면 같은 값을 가진다.

Link copied to clipboard
fun TrackingEvent.toJSONObject(serde: JsonSerde): JSONObject