* [Swift6] create Swift6 generator * [Swift6] create Swift6 generator * Update vapor integration * Update bitrise stack to Xcode 16 * [Swift6] tryped throws * [Swift6] tryped throws * [Swift6] combine deferred and api static method * [Swift6] update readme * [Swift6] fix some errors * [Swift6] fix some errors * [Swift6] fix some errors * [Swift6] update docs * [Swift6] update docs * Use multiline comments for examples in csharp generator (#19079) * multi * gen * Uncomment File::deleteOnExit (#19624) * [Core/Rust Server] Check references in additionalProperties correctly when checking freeForm status (#19605) * Check references in additionalProperties correctly Handle references in additionalProperties correctly when determining free-form status * Update samples * [Rust Server] Handle arrays in forms (#19625) * [Rust Server] Handle arrays in forms correctly * [Rust Server] Add tests * Update samples * [Swift6] fix CI * [Swift6] fix CI * [Swift6] fix CI * [Swift6] fix CI --------- Co-authored-by: Liri S <reallyliri@gmail.com> Co-authored-by: Beppe Catanese <1771700+gcatanese@users.noreply.github.com> Co-authored-by: Richard Whitehouse <git@richardwhiuk.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
		
			
				
	
	
	
		
			14 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	PetAPI
All URIs are relative to http://petstore.swagger.io:80/v2
| Method | HTTP request | Description | 
|---|---|---|
| addPet | POST /pet | Add a new pet to the store | 
| deletePet | DELETE /pet/{petId} | Deletes a pet | 
| findPetsByStatus | GET /pet/findByStatus | Finds Pets by status | 
| findPetsByTags | GET /pet/findByTags | Finds Pets by tags | 
| getPetById | GET /pet/{petId} | Find pet by ID | 
| updatePet | PUT /pet | Update an existing pet | 
| updatePetWithForm | POST /pet/{petId} | Updates a pet in the store with form data | 
| uploadFile | POST /pet/{petId}/uploadImage | uploads an image | 
| uploadFileWithRequiredFile | POST /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) | 
addPet
    open class func addPet(body: Pet, completion: @escaping (_ data: Void?, _ error: Error?) -> Void)
Add a new pet to the store
Example
// 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 = Pet(id: 123, category: Category(id: 123, name: "name_example"), name: "name_example", photoUrls: ["photoUrls_example"], tags: [Tag(id: 123, name: "name_example")], status: "status_example") // Pet | Pet object that needs to be added to the store
// Add a new pet to the store
PetAPI.addPet(body: body) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| body | Pet | Pet object that needs to be added to the store | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json, application/xml
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deletePet
    open class func deletePet(petId: Int64, apiKey: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void)
Deletes a pet
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | Pet id to delete
let apiKey = "apiKey_example" // String |  (optional)
// Deletes a pet
PetAPI.deletePet(petId: petId, apiKey: apiKey) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | Pet id to delete | |
| apiKey | String | [optional] | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
findPetsByStatus
    open class func findPetsByStatus(status: [Status_findPetsByStatus], completion: @escaping (_ data: [Pet]?, _ error: Error?) -> Void)
Finds Pets by status
Multiple status values can be provided with comma separated strings
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let status = ["status_example"] // [String] | Status values that need to be considered for filter
// Finds Pets by status
PetAPI.findPetsByStatus(status: status) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| status | [String] | Status values that need to be considered for filter | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
findPetsByTags
    open class func findPetsByTags(tags: [String], completion: @escaping (_ data: [Pet]?, _ error: Error?) -> Void)
Finds Pets by tags
Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let tags = ["inner_example"] // [String] | Tags to filter by
// Finds Pets by tags
PetAPI.findPetsByTags(tags: tags) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| tags | [String] | Tags to filter by | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getPetById
    open class func getPetById(petId: Int64, completion: @escaping (_ data: Pet?, _ error: Error?) -> Void)
Find pet by ID
Returns a single pet
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to return
// Find pet by ID
PetAPI.getPetById(petId: petId) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to return | 
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
 - Accept: application/xml, application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePet
    open class func updatePet(body: Pet, completion: @escaping (_ data: Void?, _ error: Error?) -> Void)
Update an existing pet
Example
// 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 = Pet(id: 123, category: Category(id: 123, name: "name_example"), name: "name_example", photoUrls: ["photoUrls_example"], tags: [Tag(id: 123, name: "name_example")], status: "status_example") // Pet | Pet object that needs to be added to the store
// Update an existing pet
PetAPI.updatePet(body: body) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| body | Pet | Pet object that needs to be added to the store | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json, application/xml
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePetWithForm
    open class func updatePetWithForm(petId: Int64, name: String? = nil, status: String? = nil, completion: @escaping (_ data: Void?, _ error: Error?) -> Void)
Updates a pet in the store with form data
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet that needs to be updated
let name = "name_example" // String | Updated name of the pet (optional)
let status = "status_example" // String | Updated status of the pet (optional)
// Updates a pet in the store with form data
PetAPI.updatePetWithForm(petId: petId, name: name, status: status) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet that needs to be updated | |
| name | String | Updated name of the pet | [optional] | 
| status | String | Updated status of the pet | [optional] | 
Return type
Void (empty response body)
Authorization
HTTP request headers
- Content-Type: application/x-www-form-urlencoded
 - Accept: Not defined
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
uploadFile
    open class func uploadFile(petId: Int64, additionalMetadata: String? = nil, file: URL? = nil, completion: @escaping (_ data: ApiResponse?, _ error: Error?) -> Void)
uploads an image
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to update
let additionalMetadata = "additionalMetadata_example" // String | Additional data to pass to server (optional)
let file = URL(string: "https://example.com")! // URL | file to upload (optional)
// uploads an image
PetAPI.uploadFile(petId: petId, additionalMetadata: additionalMetadata, file: file) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to update | |
| additionalMetadata | String | Additional data to pass to server | [optional] | 
| file | URL | file to upload | [optional] | 
Return type
Authorization
HTTP request headers
- Content-Type: multipart/form-data
 - Accept: application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]
uploadFileWithRequiredFile
    open class func uploadFileWithRequiredFile(petId: Int64, requiredFile: URL, additionalMetadata: String? = nil, completion: @escaping (_ data: ApiResponse?, _ error: Error?) -> Void)
uploads an image (required)
Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import PetstoreClient
let petId = 987 // Int64 | ID of pet to update
let requiredFile = URL(string: "https://example.com")! // URL | file to upload
let additionalMetadata = "additionalMetadata_example" // String | Additional data to pass to server (optional)
// uploads an image (required)
PetAPI.uploadFileWithRequiredFile(petId: petId, requiredFile: requiredFile, additionalMetadata: additionalMetadata) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| petId | Int64 | ID of pet to update | |
| requiredFile | URL | file to upload | |
| additionalMetadata | String | Additional data to pass to server | [optional] | 
Return type
Authorization
HTTP request headers
- Content-Type: multipart/form-data
 - Accept: application/json
 
[Back to top] [Back to API list] [Back to Model list] [Back to README]