13 lines
237 B
Go
Raw Normal View History

2024-11-07 19:07:41 +00:00
package keychains
type CreateKeychainSchema struct {
2024-11-12 17:17:10 +00:00
TeamID *string `json:"teamId"`
Type string `json:"type"`
Label string `json:"label"`
Data interface{} `json:"data"`
}
type GetAllOpt struct {
TeamID string
2024-11-07 19:07:41 +00:00
}