Add powershell echo test, rename api key names (#17043)

* add powershell echo test, rename api key names

* update
This commit is contained in:
William Cheng
2023-11-13 00:09:46 +08:00
committed by GitHub
parent 6917aad760
commit 372894dd1d
74 changed files with 6875 additions and 19 deletions

View File

@@ -0,0 +1,31 @@
# Pet
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **Int64** | | [optional]
**Name** | **String** | |
**Category** | [**Category**](Category.md) | | [optional]
**PhotoUrls** | **String[]** | |
**Tags** | [**Tag[]**](Tag.md) | | [optional]
**Status** | **String** | pet status in the store | [optional]
## Examples
- Prepare the resource
```powershell
$Pet = Initialize-PSOpenAPIToolsPet -Id 10 `
-Name doggie `
-Category null `
-PhotoUrls null `
-Tags null `
-Status null
```
- Convert the resource to JSON
```powershell
$Pet | ConvertTo-JSON
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)