WvwMatch

@Serializable
data class WvwMatch(val wvwMatchId: GW2WvwMatchId, val redWorldId: GW2WorldId, val blueWorldId: GW2WorldId, val greenWorldId: GW2WorldId, val startTime: String, val endTime: String)

Information about a WvW match.

Parameters

wvwMatchId

the match's ID

redWorldId

the ID of the red team's primary server

blueWorldId

the ID of the blue team's primary server

greenWorldId

the ID of the green team's primary server

startTime

the ISO-8601 standard timestamp of when the match's start

endTime

the ISO-8601 standard timestamp of when the match's end

Constructors

Link copied to clipboard
constructor(wvwMatchId: GW2WvwMatchId, redWorldId: GW2WorldId, blueWorldId: GW2WorldId, greenWorldId: GW2WorldId, startTime: String, endTime: String)

Properties

Link copied to clipboard
@SerialName(value = "blue_world_id")
val blueWorldId: GW2WorldId

This field holds the ID of the blue team's primary server.

Link copied to clipboard
@SerialName(value = "end_time")
val endTime: String

This field holds the ISO-8601 standard timestamp of when the match's end.

Link copied to clipboard
@SerialName(value = "green_world_id")
val greenWorldId: GW2WorldId

This field holds the ID of the green team's primary server.

Link copied to clipboard
@SerialName(value = "red_world_id")
val redWorldId: GW2WorldId

This field holds the ID of the red team's primary server.

Link copied to clipboard
@SerialName(value = "start_time")
val startTime: String

This field holds the ISO-8601 standard timestamp of when the match's start.

Link copied to clipboard
@SerialName(value = "wvw_match_id")
val wvwMatchId: GW2WvwMatchId

This field holds the match's ID.