mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-05-11 02:28:22 +00:00
11 lines
371 B
Go
11 lines
371 B
Go
package folder
|
|
|
|
import "time"
|
|
|
|
type FolderJsonOutput struct {
|
|
ID *string `json:"id,omitempty"`
|
|
FolderParentID *string `json:"folder_parent_id,omitempty"`
|
|
Name *string `json:"name,omitempty"`
|
|
CreatedTimestamp *time.Time `json:"created_timestamp,omitempty"`
|
|
ModifiedTimestamp *time.Time `json:"modified_timestamp,omitempty"`
|
|
}
|