mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40:27 +00:00
5a1fd7dadd
Bumps [github.com/SevereCloud/vksdk/v2](https://github.com/SevereCloud/vksdk) from 2.11.0 to 2.13.0. - [Release notes](https://github.com/SevereCloud/vksdk/releases) - [Commits](https://github.com/SevereCloud/vksdk/compare/v2.11.0...v2.13.0) --- updated-dependencies: - dependency-name: github.com/SevereCloud/vksdk/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
package object // import "github.com/SevereCloud/vksdk/v2/object"
|
|
|
|
// DatabaseCity struct.
|
|
type DatabaseCity struct {
|
|
ID int `json:"id"` // City ID
|
|
Title string `json:"title"` // City title
|
|
Area string `json:"area,omitempty"`
|
|
Region string `json:"region,omitempty"`
|
|
Important BaseBoolInt `json:"important,omitempty"`
|
|
}
|
|
|
|
// DatabaseMetroStation struct.
|
|
type DatabaseMetroStation struct {
|
|
ID int `json:"id"` // Metro station ID
|
|
Name string `json:"name"` // Metro station name
|
|
Color string `json:"color"` // Metro station color
|
|
CityID int `json:"city_id"` // Metro station city ID
|
|
}
|
|
|
|
// DatabaseFaculty struct.
|
|
type DatabaseFaculty struct {
|
|
ID int `json:"id"` // Faculty ID
|
|
Title string `json:"title"` // Faculty title
|
|
}
|
|
|
|
// DatabaseRegion struct.
|
|
type DatabaseRegion struct {
|
|
ID int `json:"id"` // Region ID
|
|
Title string `json:"title"` // Region title
|
|
}
|
|
|
|
// DatabaseSchool struct.
|
|
type DatabaseSchool struct {
|
|
ID int `json:"id"` // School ID
|
|
Title string `json:"title"` // School title
|
|
}
|
|
|
|
// DatabaseStation struct.
|
|
type DatabaseStation struct {
|
|
CityID int `json:"city_id"` // City ID
|
|
Color string `json:"color"` // Hex color code without #
|
|
ID int `json:"id"` // Station ID
|
|
Name string `json:"name"` // Station name
|
|
}
|
|
|
|
// DatabaseUniversity struct.
|
|
type DatabaseUniversity struct {
|
|
ID int `json:"id"` // University ID
|
|
Title string `json:"title"` // University title
|
|
}
|