mirror of https://github.com/vernonkeenan/lib
parent
d24559cfdd
commit
a7437fcd75
|
@ -23,6 +23,12 @@ import (
|
||||||
// swagger:model User
|
// swagger:model User
|
||||||
type User struct {
|
type User struct {
|
||||||
|
|
||||||
|
// API Gateway URL
|
||||||
|
APIGatewayURL string `json:"APIGatewayURL,omitempty"`
|
||||||
|
|
||||||
|
// API Gateway User
|
||||||
|
APIGatewayUser string `json:"APIGatewayUser,omitempty"`
|
||||||
|
|
||||||
// API Key
|
// API Key
|
||||||
APIKey string `json:"APIKey,omitempty"`
|
APIKey string `json:"APIKey,omitempty"`
|
||||||
|
|
||||||
|
@ -95,6 +101,9 @@ type User struct {
|
||||||
// Full Photo URL
|
// Full Photo URL
|
||||||
FullPhotoURL string `json:"FullPhotoURL,omitempty"`
|
FullPhotoURL string `json:"FullPhotoURL,omitempty"`
|
||||||
|
|
||||||
|
// GitHub
|
||||||
|
GitHub string `json:"GitHub,omitempty"`
|
||||||
|
|
||||||
// Record ID
|
// Record ID
|
||||||
ID string `json:"ID,omitempty"`
|
ID string `json:"ID,omitempty"`
|
||||||
|
|
||||||
|
@ -125,6 +134,9 @@ type User struct {
|
||||||
// The Last Name
|
// The Last Name
|
||||||
LastName string `json:"LastName,omitempty"`
|
LastName string `json:"LastName,omitempty"`
|
||||||
|
|
||||||
|
// LinkedIn
|
||||||
|
LinkedIn string `json:"LinkedIn,omitempty"`
|
||||||
|
|
||||||
// Number of times user has logged in
|
// Number of times user has logged in
|
||||||
LoginCount int64 `json:"LoginCount,omitempty"`
|
LoginCount int64 `json:"LoginCount,omitempty"`
|
||||||
|
|
||||||
|
@ -188,6 +200,9 @@ type User struct {
|
||||||
// Title
|
// Title
|
||||||
Title string `json:"Title,omitempty"`
|
Title string `json:"Title,omitempty"`
|
||||||
|
|
||||||
|
// Twitter
|
||||||
|
Twitter string `json:"Twitter,omitempty"`
|
||||||
|
|
||||||
// Role
|
// Role
|
||||||
UserRoleID string `json:"UserRoleID,omitempty"`
|
UserRoleID string `json:"UserRoleID,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,12 @@ import (
|
||||||
// swagger:model User
|
// swagger:model User
|
||||||
type User struct {
|
type User struct {
|
||||||
|
|
||||||
|
// API Gateway URL
|
||||||
|
APIGatewayURL string `json:"APIGatewayURL,omitempty"`
|
||||||
|
|
||||||
|
// API Gateway User
|
||||||
|
APIGatewayUser string `json:"APIGatewayUser,omitempty"`
|
||||||
|
|
||||||
// API Key
|
// API Key
|
||||||
APIKey string `json:"APIKey,omitempty"`
|
APIKey string `json:"APIKey,omitempty"`
|
||||||
|
|
||||||
|
@ -95,6 +101,9 @@ type User struct {
|
||||||
// Full Photo URL
|
// Full Photo URL
|
||||||
FullPhotoURL string `json:"FullPhotoURL,omitempty"`
|
FullPhotoURL string `json:"FullPhotoURL,omitempty"`
|
||||||
|
|
||||||
|
// GitHub
|
||||||
|
GitHub string `json:"GitHub,omitempty"`
|
||||||
|
|
||||||
// Record ID
|
// Record ID
|
||||||
ID string `json:"ID,omitempty"`
|
ID string `json:"ID,omitempty"`
|
||||||
|
|
||||||
|
@ -125,6 +134,9 @@ type User struct {
|
||||||
// The Last Name
|
// The Last Name
|
||||||
LastName string `json:"LastName,omitempty"`
|
LastName string `json:"LastName,omitempty"`
|
||||||
|
|
||||||
|
// LinkedIn
|
||||||
|
LinkedIn string `json:"LinkedIn,omitempty"`
|
||||||
|
|
||||||
// Number of times user has logged in
|
// Number of times user has logged in
|
||||||
LoginCount int64 `json:"LoginCount,omitempty"`
|
LoginCount int64 `json:"LoginCount,omitempty"`
|
||||||
|
|
||||||
|
@ -191,6 +203,9 @@ type User struct {
|
||||||
// Title
|
// Title
|
||||||
Title string `json:"Title,omitempty"`
|
Title string `json:"Title,omitempty"`
|
||||||
|
|
||||||
|
// Twitter
|
||||||
|
Twitter string `json:"Twitter,omitempty"`
|
||||||
|
|
||||||
// Role
|
// Role
|
||||||
UserRoleID string `json:"UserRoleID,omitempty"`
|
UserRoleID string `json:"UserRoleID,omitempty"`
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,12 @@ User:
|
||||||
ID:
|
ID:
|
||||||
description: Record ID
|
description: Record ID
|
||||||
type: string
|
type: string
|
||||||
|
APIGatewayURL:
|
||||||
|
description: API Gateway URL
|
||||||
|
type: string
|
||||||
|
APIGatewayUser:
|
||||||
|
description: API Gateway User
|
||||||
|
type: string
|
||||||
APIKey:
|
APIKey:
|
||||||
description: API Key
|
description: API Key
|
||||||
type: string
|
type: string
|
||||||
|
@ -74,6 +80,9 @@ User:
|
||||||
FullPhotoURL:
|
FullPhotoURL:
|
||||||
description: Full Photo URL
|
description: Full Photo URL
|
||||||
type: string
|
type: string
|
||||||
|
GitHub:
|
||||||
|
description: GitHub
|
||||||
|
type: string
|
||||||
IsActive:
|
IsActive:
|
||||||
description: Active
|
description: Active
|
||||||
type: boolean
|
type: boolean
|
||||||
|
@ -100,6 +109,9 @@ User:
|
||||||
LastName:
|
LastName:
|
||||||
description: The Last Name
|
description: The Last Name
|
||||||
type: string
|
type: string
|
||||||
|
LinkedIn:
|
||||||
|
description: LinkedIn
|
||||||
|
type: string
|
||||||
LoginCount:
|
LoginCount:
|
||||||
description: Number of times user has logged in
|
description: Number of times user has logged in
|
||||||
format: int64
|
format: int64
|
||||||
|
@ -165,6 +177,9 @@ User:
|
||||||
Title:
|
Title:
|
||||||
description: Title
|
description: Title
|
||||||
type: string
|
type: string
|
||||||
|
Twitter:
|
||||||
|
description: Twitter
|
||||||
|
type: string
|
||||||
UserRoleID:
|
UserRoleID:
|
||||||
description: Role
|
description: Role
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -2949,6 +2949,12 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
User:
|
User:
|
||||||
properties:
|
properties:
|
||||||
|
APIGatewayURL:
|
||||||
|
description: API Gateway URL
|
||||||
|
type: string
|
||||||
|
APIGatewayUser:
|
||||||
|
description: API Gateway User
|
||||||
|
type: string
|
||||||
APIKey:
|
APIKey:
|
||||||
description: API Key
|
description: API Key
|
||||||
type: string
|
type: string
|
||||||
|
@ -3020,6 +3026,9 @@ definitions:
|
||||||
FullPhotoURL:
|
FullPhotoURL:
|
||||||
description: Full Photo URL
|
description: Full Photo URL
|
||||||
type: string
|
type: string
|
||||||
|
GitHub:
|
||||||
|
description: GitHub
|
||||||
|
type: string
|
||||||
ID:
|
ID:
|
||||||
description: Record ID
|
description: Record ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3049,6 +3058,9 @@ definitions:
|
||||||
LastName:
|
LastName:
|
||||||
description: The Last Name
|
description: The Last Name
|
||||||
type: string
|
type: string
|
||||||
|
LinkedIn:
|
||||||
|
description: LinkedIn
|
||||||
|
type: string
|
||||||
LoginCount:
|
LoginCount:
|
||||||
description: Number of times user has logged in
|
description: Number of times user has logged in
|
||||||
format: int64
|
format: int64
|
||||||
|
@ -3114,6 +3126,9 @@ definitions:
|
||||||
Title:
|
Title:
|
||||||
description: Title
|
description: Title
|
||||||
type: string
|
type: string
|
||||||
|
Twitter:
|
||||||
|
description: Twitter
|
||||||
|
type: string
|
||||||
UserRoleID:
|
UserRoleID:
|
||||||
description: Role
|
description: Role
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -2995,6 +2995,12 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
User:
|
User:
|
||||||
properties:
|
properties:
|
||||||
|
APIGatewayURL:
|
||||||
|
description: API Gateway URL
|
||||||
|
type: string
|
||||||
|
APIGatewayUser:
|
||||||
|
description: API Gateway User
|
||||||
|
type: string
|
||||||
APIKey:
|
APIKey:
|
||||||
description: API Key
|
description: API Key
|
||||||
type: string
|
type: string
|
||||||
|
@ -3066,6 +3072,9 @@ definitions:
|
||||||
FullPhotoURL:
|
FullPhotoURL:
|
||||||
description: Full Photo URL
|
description: Full Photo URL
|
||||||
type: string
|
type: string
|
||||||
|
GitHub:
|
||||||
|
description: GitHub
|
||||||
|
type: string
|
||||||
ID:
|
ID:
|
||||||
description: Record ID
|
description: Record ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3095,6 +3104,9 @@ definitions:
|
||||||
LastName:
|
LastName:
|
||||||
description: The Last Name
|
description: The Last Name
|
||||||
type: string
|
type: string
|
||||||
|
LinkedIn:
|
||||||
|
description: LinkedIn
|
||||||
|
type: string
|
||||||
LoginCount:
|
LoginCount:
|
||||||
description: Number of times user has logged in
|
description: Number of times user has logged in
|
||||||
format: int64
|
format: int64
|
||||||
|
@ -3163,6 +3175,9 @@ definitions:
|
||||||
Title:
|
Title:
|
||||||
description: Title
|
description: Title
|
||||||
type: string
|
type: string
|
||||||
|
Twitter:
|
||||||
|
description: Twitter
|
||||||
|
type: string
|
||||||
UserRoleID:
|
UserRoleID:
|
||||||
description: Role
|
description: Role
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -2949,6 +2949,12 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
User:
|
User:
|
||||||
properties:
|
properties:
|
||||||
|
APIGatewayURL:
|
||||||
|
description: API Gateway URL
|
||||||
|
type: string
|
||||||
|
APIGatewayUser:
|
||||||
|
description: API Gateway User
|
||||||
|
type: string
|
||||||
APIKey:
|
APIKey:
|
||||||
description: API Key
|
description: API Key
|
||||||
type: string
|
type: string
|
||||||
|
@ -3020,6 +3026,9 @@ definitions:
|
||||||
FullPhotoURL:
|
FullPhotoURL:
|
||||||
description: Full Photo URL
|
description: Full Photo URL
|
||||||
type: string
|
type: string
|
||||||
|
GitHub:
|
||||||
|
description: GitHub
|
||||||
|
type: string
|
||||||
ID:
|
ID:
|
||||||
description: Record ID
|
description: Record ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3049,6 +3058,9 @@ definitions:
|
||||||
LastName:
|
LastName:
|
||||||
description: The Last Name
|
description: The Last Name
|
||||||
type: string
|
type: string
|
||||||
|
LinkedIn:
|
||||||
|
description: LinkedIn
|
||||||
|
type: string
|
||||||
LoginCount:
|
LoginCount:
|
||||||
description: Number of times user has logged in
|
description: Number of times user has logged in
|
||||||
format: int64
|
format: int64
|
||||||
|
@ -3114,6 +3126,9 @@ definitions:
|
||||||
Title:
|
Title:
|
||||||
description: Title
|
description: Title
|
||||||
type: string
|
type: string
|
||||||
|
Twitter:
|
||||||
|
description: Twitter
|
||||||
|
type: string
|
||||||
UserRoleID:
|
UserRoleID:
|
||||||
description: Role
|
description: Role
|
||||||
type: string
|
type: string
|
||||||
|
|
|
@ -2995,6 +2995,12 @@ definitions:
|
||||||
type: object
|
type: object
|
||||||
User:
|
User:
|
||||||
properties:
|
properties:
|
||||||
|
APIGatewayURL:
|
||||||
|
description: API Gateway URL
|
||||||
|
type: string
|
||||||
|
APIGatewayUser:
|
||||||
|
description: API Gateway User
|
||||||
|
type: string
|
||||||
APIKey:
|
APIKey:
|
||||||
description: API Key
|
description: API Key
|
||||||
type: string
|
type: string
|
||||||
|
@ -3066,6 +3072,9 @@ definitions:
|
||||||
FullPhotoURL:
|
FullPhotoURL:
|
||||||
description: Full Photo URL
|
description: Full Photo URL
|
||||||
type: string
|
type: string
|
||||||
|
GitHub:
|
||||||
|
description: GitHub
|
||||||
|
type: string
|
||||||
ID:
|
ID:
|
||||||
description: Record ID
|
description: Record ID
|
||||||
type: string
|
type: string
|
||||||
|
@ -3095,6 +3104,9 @@ definitions:
|
||||||
LastName:
|
LastName:
|
||||||
description: The Last Name
|
description: The Last Name
|
||||||
type: string
|
type: string
|
||||||
|
LinkedIn:
|
||||||
|
description: LinkedIn
|
||||||
|
type: string
|
||||||
LoginCount:
|
LoginCount:
|
||||||
description: Number of times user has logged in
|
description: Number of times user has logged in
|
||||||
format: int64
|
format: int64
|
||||||
|
@ -3163,6 +3175,9 @@ definitions:
|
||||||
Title:
|
Title:
|
||||||
description: Title
|
description: Title
|
||||||
type: string
|
type: string
|
||||||
|
Twitter:
|
||||||
|
description: Twitter
|
||||||
|
type: string
|
||||||
UserRoleID:
|
UserRoleID:
|
||||||
description: Role
|
description: Role
|
||||||
type: string
|
type: string
|
||||||
|
|
Loading…
Reference in New Issue