32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
|
/*
|
||
|
* HyperOne API
|
||
|
*
|
||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||
|
*
|
||
|
* API version: 0.0.2
|
||
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
||
|
*/
|
||
|
|
||
|
package openapi
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// User struct for User
|
||
|
type User struct {
|
||
|
Id string `json:"id,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
FamilyName string `json:"familyName,omitempty"`
|
||
|
CreatedOn time.Time `json:"createdOn,omitempty"`
|
||
|
ModifiedOn time.Time `json:"modifiedOn,omitempty"`
|
||
|
PasswordReset UserPasswordReset `json:"passwordReset,omitempty"`
|
||
|
Verified bool `json:"verified,omitempty"`
|
||
|
Lang string `json:"lang,omitempty"`
|
||
|
Phone string `json:"phone,omitempty"`
|
||
|
Limit UserLimit `json:"limit,omitempty"`
|
||
|
Services []UserServices `json:"services,omitempty"`
|
||
|
Credential UserCredential `json:"credential,omitempty"`
|
||
|
NetworkAcl []UserNetworkAcl `json:"networkAcl,omitempty"`
|
||
|
}
|