Table of Contents

Class ClubAthlete

Namespace
Tudormobile.Strava.Model
Assembly
Tudormobile.Strava.dll

Represents an athlete who is a member of a Strava club.

public class ClubAthlete
Inheritance
ClubAthlete
Inherited Members

Remarks

This model contains information about a club member including their name, membership type, and administrative roles within the club. This is typically returned when requesting club member lists from the Clubs API.

Properties

Admin

Indicates whether the athlete is an administrator of the club.

public bool Admin { get; set; }

Property Value

bool

Firstname

The athlete's first name.

public string Firstname { get; set; }

Property Value

string

Lastname

The athlete's last name.

public string Lastname { get; set; }

Property Value

string

Membership

The membership status or type of the athlete in the club.

public string Membership { get; set; }

Property Value

string

Owner

Indicates whether the athlete is the owner of the club.

public bool Owner { get; set; }

Property Value

bool

ResourceState

Resource state, indicates level of detail. Possible values: 1 -> "meta", 2 -> "summary", 3 -> "detail".

public ResourceStates ResourceState { get; set; }

Property Value

ResourceStates