-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.go
99 lines (77 loc) · 2.74 KB
/
user.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// User User models fields relevant to one user.
//
// swagger:model User
type User struct {
// User is an admin.
// Example: false
Admin bool `json:"admin,omitempty"`
// User was approved by an admin.
// Example: true
Approved bool `json:"approved,omitempty"`
// Time when the last "please confirm your email address" email was sent, if at all. (ISO 8601 Datetime)
// Example: 2021-07-30T09:20:25+00:00
ConfirmationSentAt string `json:"confirmation_sent_at,omitempty"`
// Time at which the email given in the `email` field was confirmed, if at all. (ISO 8601 Datetime)
// Example: 2021-07-30T09:20:25+00:00
ConfirmedAt string `json:"confirmed_at,omitempty"`
// Time this user was created. (ISO 8601 Datetime)
// Example: 2021-07-30T09:20:25+00:00
CreatedAt string `json:"created_at,omitempty"`
// User's account is disabled.
// Example: false
Disabled bool `json:"disabled,omitempty"`
// Confirmed email address of this user, if set.
// Example: [email protected]
Email string `json:"email,omitempty"`
// Database ID of this user.
// Example: 01FBVD42CQ3ZEEVMW180SBX03B
ID string `json:"id,omitempty"`
// Time at which this user was last emailed, if at all. (ISO 8601 Datetime)
// Example: 2021-07-30T09:20:25+00:00
LastEmailedAt string `json:"last_emailed_at,omitempty"`
// User is a moderator.
// Example: false
Moderator bool `json:"moderator,omitempty"`
// Reason for sign-up, if provided.
// Example: Please! Pretty please!
Reason string `json:"reason,omitempty"`
// Time when the last "please reset your password" email was sent, if at all. (ISO 8601 Datetime)
// Example: 2021-07-30T09:20:25+00:00
ResetPasswordSentAt string `json:"reset_password_sent_at,omitempty"`
// Unconfirmed email address of this user, if set.
// Example: [email protected]
UnconfirmedEmail string `json:"unconfirmed_email,omitempty"`
}
// Validate validates this user
func (m *User) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this user based on context it is used
func (m *User) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *User) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *User) UnmarshalBinary(b []byte) error {
var res User
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}