Member

@Serializable
data class Member(val name: String, val role: String)

Information about a team member.

Parameters

name

the member's account name

role

the member's role (i.e. "Captain" or "Member")

Constructors

Link copied to clipboard
constructor(name: String, role: String)

Properties

Link copied to clipboard

This field holds the member's account name.

Link copied to clipboard

This field holds the member's role (i.e. "Captain" or "Member").