You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
667 B
27 lines
667 B
6 months ago
|
package response
|
||
|
|
||
|
type TripartiteGoogle struct {
|
||
|
ID string `json:"id"`
|
||
|
Sub string `json:"sub"`
|
||
|
Email string `json:"email"`
|
||
|
VerifiedEmail bool `json:"verified_email"`
|
||
|
Name string `json:"name"`
|
||
|
GivenName string `json:"given_name"`
|
||
|
FamilyName string `json:"family_name"`
|
||
|
Picture string `json:"picture"`
|
||
|
Locale string `json:"locale"`
|
||
|
}
|
||
|
|
||
|
type TripartiteTwitter struct {
|
||
|
Data struct {
|
||
|
ID string `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
UserName string `json:"username"`
|
||
|
} `json:"data"`
|
||
|
}
|
||
|
|
||
|
type TripartiteInstagram struct {
|
||
|
ID string `json:"id"`
|
||
|
Username string `json:"username"`
|
||
|
}
|