You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@JsonClassDescription("Describes an HTTP response returned by an operation.")
publicclassResponse {
@JsonPropertyDescription("The HTTP status code associated with this response. Wildcard error status codes like 499, 599, or 999 can be used to catch all errors.")
@JsonProperty("code")
privateIntegercode;
@JsonPropertyDescription("The content type to use when the response body cannot be described by a TypeSchema.")
@JsonProperty("contentType")
privateStringcontentType;
@JsonPropertyDescription("TypeSchema describing the structure of the response payload.")