-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodel_detailed_club.go
50 lines (48 loc) · 1.84 KB
/
model_detailed_club.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Strava API v3
*
* Strava API
*
* API version: 3.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package strava
type DetailedClub struct {
// The club's unique identifier.
Id int32 `json:"id,omitempty"`
// Resource state, indicates level of detail. Possible values: 1 -> \"meta\", 2 -> \"summary\", 3 -> \"detail\"
ResourceState int32 `json:"resource_state,omitempty"`
// The club's name.
Name string `json:"name,omitempty"`
// URL to a 60x60 pixel profile picture.
ProfileMedium string `json:"profile_medium,omitempty"`
// URL to a ~1185x580 pixel cover photo.
CoverPhoto string `json:"cover_photo,omitempty"`
// URL to a ~360x176 pixel cover photo.
CoverPhotoSmall string `json:"cover_photo_small,omitempty"`
SportType string `json:"sport_type,omitempty"`
// The club's city.
City string `json:"city,omitempty"`
// The club's state or geographical region.
State string `json:"state,omitempty"`
// The club's country.
Country string `json:"country,omitempty"`
// Whether the club is private.
Private bool `json:"private,omitempty"`
// The club's member count.
MemberCount int32 `json:"member_count,omitempty"`
// Whether the club is featured or not.
Featured bool `json:"featured,omitempty"`
// Whether the club is verified or not.
Verified bool `json:"verified,omitempty"`
// The club's vanity URL.
Url string `json:"url,omitempty"`
// The membership status of the logged-in athlete.
Membership string `json:"membership,omitempty"`
// Whether the currently logged-in athlete is an administrator of this club.
Admin bool `json:"admin,omitempty"`
// Whether the currently logged-in athlete is the owner of this club.
Owner bool `json:"owner,omitempty"`
// The number of athletes in the club that the logged-in athlete follows.
FollowingCount int32 `json:"following_count,omitempty"`
}