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
public struct AdventuresQuery: Codable {
public var all: Bool?
public var recommended: Bool?
public var fields: AdventuresQueryFields?
public init(all: Bool? = nil, recommended: Bool? = nil, fields: AdventuresQueryFields? = nil) {
self.all = all
self.recommended = recommended
self.fields = fields
}
}
as you can see EntitySearchQuery is ignored.
The text was updated successfully, but these errors were encountered:
I know you opened this about a 1.5 years ago. Currently seeing a similar issue. I was able to get allOf working by using yaml
Execution:
description: The history and responsetype: arrayexample: []properties:
items:
allOf:
- $ref: '#/components/schemas/History'
- $ref: '#/components/schemas/ExecutionResponse'
Maybe something with JSON?
Though I am also having a similar issue with anyOf. It doesnt have anything in the body. It is also making it a struct when I think it should be an enum? This is how I think it should look.
In swift generator you get this code
as you can see EntitySearchQuery is ignored.
The text was updated successfully, but these errors were encountered: