GW2v2Pet

@Serializable
data class GW2v2Pet(val id: Int, val name: String, val description: String, val icon: String, val skills: List<GW2v2Pet.Skill>)

Information about a pet.

Parameters

id

the pet's ID

name

the pet's name

description

the pet's description

icon

a render service URL for the pet's icon

skills

the pet's skills

Constructors

Link copied to clipboard
constructor(id: Int, name: String, description: String, icon: String, skills: List<GW2v2Pet.Skill>)

Types

Link copied to clipboard
@Serializable
data class Skill(val id: Int)

Information about a pet's skill.

Properties

Link copied to clipboard

This field holds the pet's description.

Link copied to clipboard

This field holds a render service URL for the pet's icon.

Link copied to clipboard
val id: Int

This field holds the pet's ID.

Link copied to clipboard

This field holds the pet's name.

Link copied to clipboard

This field holds the pet's skills.