interface APITeam {
    icon: null | string;
    id: string;
    members: APITeamMember[];
    name: string;
    owner_user_id: string;
}

Properties

icon: null | string

A hash of the image of the team's icon

id: string

The unique id of the team

members: APITeamMember[]

The members of the team

name: string

The name of the team

owner_user_id: string

The user id of the current team owner