mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-09-13 14:59:09 +00:00
Add Folder Json Output
This commit is contained in:
parent
c8dc067697
commit
e8bb791686
3 changed files with 76 additions and 31 deletions
11
folder/json.go
Normal file
11
folder/json.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
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"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue