Files
onepassword-operator/pkg/onepassword/model/item_field.go
Volodymyr Zotov dcb5d5675a Add internal models
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.
2025-05-29 11:30:17 -05:00

8 lines
126 B
Go

package model
// ItemField Representation of a single field on an Item
type ItemField struct {
Label string
Value string
}