mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-12 10:58:21 +00:00
14 lines
549 B
Go
14 lines
549 B
Go
package permission
|
|
|
|
import "time"
|
|
|
|
type PermissionJsonOutput struct {
|
|
ID *string `json:"id,omitempty"`
|
|
Aco *string `json:"aco,omitempty"`
|
|
AcoForeignKey *string `json:"aco_foreign_key,omitempty"`
|
|
Aro *string `json:"aro,omitempty"`
|
|
AroForeignKey *string `json:"aro_foreign_key,omitempty"`
|
|
Type *int `json:"type,omitempty"`
|
|
CreatedTimestamp *time.Time `json:"created_timestamp,omitempty"`
|
|
ModifiedTimestamp *time.Time `json:"modified_timestamp,omitempty"`
|
|
}
|