| 5163 | } |
| 5164 | |
| 5165 | type OrganizationMember struct { |
| 5166 | UserID uuid.UUID `db:"user_id" json:"user_id"` |
| 5167 | OrganizationID uuid.UUID `db:"organization_id" json:"organization_id"` |
| 5168 | CreatedAt time.Time `db:"created_at" json:"created_at"` |
| 5169 | UpdatedAt time.Time `db:"updated_at" json:"updated_at"` |
| 5170 | Roles []string `db:"roles" json:"roles"` |
| 5171 | } |
| 5172 | |
| 5173 | type ParameterSchema struct { |
| 5174 | ID uuid.UUID `db:"id" json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected