Skip to content

Commit

Permalink
fix(tls_mutual_authentication): support null for ID value (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist authored Apr 10, 2024
1 parent ccf657f commit 4a1af1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastly/tls_mutual_authentication.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type TLSMutualAuthentication struct {
Activations []*TLSActivation `jsonapi:"relation,tls_activations"`
CreatedAt *time.Time `jsonapi:"attr,created_at,iso8601"`
Enforced bool `jsonapi:"attr,enforced"`
ID string `jsonapi:"primary,mutual_authentication"`
ID string `jsonapi:"primary,mutual_authentication,omitempty"`
Name string `jsonapi:"attr,name"`
UpdatedAt *time.Time `jsonapi:"attr,updated_at,iso8601"`
}
Expand Down

0 comments on commit 4a1af1d

Please sign in to comment.