mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-11 02:28:22 +00:00
13 lines
478 B
Go
13 lines
478 B
Go
package user
|
|
|
|
import "time"
|
|
|
|
type UserJsonOutput struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Username *string `json:"username,omitempty"`
|
|
FirstName *string `json:"first_name,omitempty"`
|
|
LastName *string `json:"last_name,omitempty"`
|
|
Role *string `json:"role,omitempty"`
|
|
CreatedTimestamp *time.Time `json:"created_timestamp,omitempty"`
|
|
ModifiedTimestamp *time.Time `json:"modified_timestamp,omitempty"`
|
|
}
|