mirror of https://github.com/vernonkeenan/lib
90 lines
1.8 KiB
Go
90 lines
1.8 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// (c) 2012-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package auth0_models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// NewUser new user
|
|
//
|
|
// swagger:model NewUser
|
|
type NewUser struct {
|
|
|
|
// blocked
|
|
Blocked bool `json:"blocked,omitempty"`
|
|
|
|
// connection
|
|
Connection string `json:"connection,omitempty"`
|
|
|
|
// email
|
|
Email string `json:"email,omitempty"`
|
|
|
|
// email verified
|
|
EmailVerified bool `json:"email_verified,omitempty"`
|
|
|
|
// family name
|
|
FamilyName string `json:"family_name,omitempty"`
|
|
|
|
// given name
|
|
GivenName string `json:"given_name,omitempty"`
|
|
|
|
// name
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// nickname
|
|
Nickname string `json:"nickname,omitempty"`
|
|
|
|
// password
|
|
Password string `json:"password,omitempty"`
|
|
|
|
// phone number
|
|
PhoneNumber string `json:"phone_number,omitempty"`
|
|
|
|
// phone verified
|
|
PhoneVerified bool `json:"phone_verified,omitempty"`
|
|
|
|
// picture
|
|
Picture string `json:"picture,omitempty"`
|
|
|
|
// user id
|
|
UserID string `json:"user_id,omitempty"`
|
|
|
|
// username
|
|
Username string `json:"username,omitempty"`
|
|
|
|
// verify email
|
|
VerifyEmail bool `json:"verify_email,omitempty"`
|
|
}
|
|
|
|
// Validate validates this new user
|
|
func (m *NewUser) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *NewUser) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *NewUser) UnmarshalBinary(b []byte) error {
|
|
var res NewUser
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|