mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-11 03:52:43 +00:00
[swift5] update visibility modifiers (#5204)
This commit is contained in:
@@ -32,7 +32,7 @@ Test serialization of outer boolean types
|
||||
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
|
||||
import PetstoreClient
|
||||
|
||||
let body = false // Bool | Input boolean as post body (optional)
|
||||
let body = true // Bool | Input boolean as post body (optional)
|
||||
|
||||
FakeAPI.fakeOuterBooleanSerialize(body: body).then {
|
||||
// when the promise is fulfilled
|
||||
@@ -490,10 +490,10 @@ Fake endpoint to test group parameters (optional)
|
||||
import PetstoreClient
|
||||
|
||||
let requiredStringGroup = 987 // Int | Required String in group parameters
|
||||
let requiredBooleanGroup = false // Bool | Required Boolean in group parameters
|
||||
let requiredBooleanGroup = true // Bool | Required Boolean in group parameters
|
||||
let requiredInt64Group = 987 // Int64 | Required Integer in group parameters
|
||||
let stringGroup = 987 // Int | String in group parameters (optional)
|
||||
let booleanGroup = false // Bool | Boolean in group parameters (optional)
|
||||
let booleanGroup = true // Bool | Boolean in group parameters (optional)
|
||||
let int64Group = 987 // Int64 | Integer in group parameters (optional)
|
||||
|
||||
// Fake endpoint to test group parameters (optional)
|
||||
|
||||
Reference in New Issue
Block a user