Closed jccomputing closed 2 years ago
The GET /client/v4/zone response doesn't include the wildcard_proxiable anymore.
GET /client/v4/zone
This produces a deserialization error: Error: error decoding response body: missing field `wildcard_proxiable` at line 1 column 591
Error: error decoding response body: missing field `wildcard_proxiable` at line 1 column 591
I don't know if the field has become optional or simply removed from the response.
Removing the field from the struct or converting it to an Option<bool> works.
Option<bool>
The
GET /client/v4/zone
response doesn't include the wildcard_proxiable anymore.This produces a deserialization error:
Error: error decoding response body: missing field `wildcard_proxiable` at line 1 column 591
I don't know if the field has become optional or simply removed from the response.
Removing the field from the struct or converting it to an
Option<bool>
works.