GW2v2Pet

@Serializable
data class GW2v2Pet(val id: GW2PetId, 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: GW2PetId, name: String, description: String, icon: String, skills: List<GW2v2Pet.Skill>)

Types

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

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

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.