Skip to content

Commit

Permalink
fix: remove schema.ISO.Deprecated field
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Jan 9, 2024
1 parent 8aba76a commit e869fe1
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions hcloud/schema/iso.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
package schema

import "time"

// ISO defines the schema of an ISO image.
type ISO struct {
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Type string `json:"type"`
Architecture *string `json:"architecture"`
Deprecated *time.Time `json:"deprecated"`
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Type string `json:"type"`
Architecture *string `json:"architecture"`
DeprecatableResource
}

Expand Down

0 comments on commit e869fe1

Please sign in to comment.