mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-22 15:38:06 +00:00

These internal models are introduced to reduce decoupling. The idea is to operate internal model within the project boundaries and convert to appropriate Connect or SDK models in the places where it's necessary.
8 lines
126 B
Go
8 lines
126 B
Go
package model
|
|
|
|
// ItemField Representation of a single field on an Item
|
|
type ItemField struct {
|
|
Label string
|
|
Value string
|
|
}
|