mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-11 02:28:22 +00:00
19 lines
775 B
Go
19 lines
775 B
Go
package group
|
|
|
|
import "time"
|
|
|
|
type GroupJsonOutput struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
Users []GroupUserMembershipJsonOutput `json:"users,omitempty"`
|
|
CreatedTimestamp *time.Time `json:"created_timestamp,omitempty"`
|
|
ModifiedTimestamp *time.Time `json:"modified_timestamp,omitempty"`
|
|
}
|
|
|
|
type GroupUserMembershipJsonOutput struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Username *string `json:"username,omitempty"`
|
|
FirstName *string `json:"first_name,omitempty"`
|
|
LastName *string `json:"last_name,omitempty"`
|
|
IsGroupManager *bool `json:"is_group_manager,omitempty"`
|
|
}
|