* update parser to 2.0.29 * better handling of null in dereferencing * update parser to 2.0.30 * update core to newer version * add new files * rollback to previous stable version * remove files * Fixes for python-experimental NullableShape component Co-authored-by: Justin Black <justin.a.black@gmail.com>
		
			
				
	
	
	
		
			12 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	PetAPI
All URIs are relative to http://petstore.swagger.io/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 | 
addPet
    open class func addPet(pet: 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 pet = 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(pet: pet) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| pet | 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(pet: 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 pet = 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(pet: pet) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }
    if (response) {
        dump(response)
    }
}
Parameters
| Name | Type | Description | Notes | 
|---|---|---|---|
| pet | 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]