mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 04:20:25 +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>
18 lines
714 B
Go
18 lines
714 B
Go
package object // import "github.com/SevereCloud/vksdk/v2/object"
|
|
|
|
// AuthSilentTokenProfile struct.
|
|
type AuthSilentTokenProfile struct {
|
|
Token string `json:"token"`
|
|
Expires int `json:"expires"`
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
Photo50 string `json:"photo_50"`
|
|
Photo100 string `json:"photo_100"`
|
|
Photo200 string `json:"photo_200"`
|
|
Phone string `json:"phone"`
|
|
PhoneValidated interface{} `json:"phone_validated"` // int | bool
|
|
UserID int `json:"user_id"`
|
|
IsPartial BaseBoolInt `json:"is_partial"`
|
|
IsService BaseBoolInt `json:"is_service"`
|
|
}
|