forked from loafle/openapi-generator-original
[csharp][generichost] Support response ranges (#19256)
* support response ranges * revert unintended change * update try deserialize methods
This commit is contained in:
parent
2958107a6a
commit
755b2efee4
@ -997,6 +997,26 @@ public abstract class AbstractCSharpCodegen extends DefaultCodegen {
|
|||||||
case "511":
|
case "511":
|
||||||
postProcessResponseCode(response, "NetworkAuthenticationRequired", httpStatusesWithReturn);
|
postProcessResponseCode(response, "NetworkAuthenticationRequired", httpStatusesWithReturn);
|
||||||
break;
|
break;
|
||||||
|
case "1xx":
|
||||||
|
response.vendorExtensions.put("x-http-status-range", 1);
|
||||||
|
postProcessResponseCode(response, "HttpStatusCode1XX", httpStatusesWithReturn);
|
||||||
|
break;
|
||||||
|
case "2xx":
|
||||||
|
response.vendorExtensions.put("x-http-status-range", 2);
|
||||||
|
postProcessResponseCode(response, "HttpStatusCode2XX", httpStatusesWithReturn);
|
||||||
|
break;
|
||||||
|
case "3xx":
|
||||||
|
response.vendorExtensions.put("x-http-status-range", 3);
|
||||||
|
postProcessResponseCode(response, "HttpStatusCode3XX", httpStatusesWithReturn);
|
||||||
|
break;
|
||||||
|
case "4xx":
|
||||||
|
response.vendorExtensions.put("x-http-status-range", 4);
|
||||||
|
postProcessResponseCode(response, "HttpStatusCode4XX", httpStatusesWithReturn);
|
||||||
|
break;
|
||||||
|
case "5xx":
|
||||||
|
response.vendorExtensions.put("x-http-status-range", 5);
|
||||||
|
postProcessResponseCode(response, "HttpStatusCode5XX", httpStatusesWithReturn);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
postProcessResponseCode(response, "CustomHttpStatusCode" + code, httpStatusesWithReturn);
|
postProcessResponseCode(response, "CustomHttpStatusCode" + code, httpStatusesWithReturn);
|
||||||
}
|
}
|
||||||
|
@ -725,7 +725,19 @@ namespace {{packageName}}.{{apiPackage}}
|
|||||||
/// Returns true if the response is {{code}} {{vendorExtensions.x-http-status}}
|
/// Returns true if the response is {{code}} {{vendorExtensions.x-http-status}}
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
{{#vendorExtensions.x-http-status-range}}
|
||||||
|
public bool Is{{vendorExtensions.x-http-status}}
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return {{vendorExtensions.x-http-status-range}}00 >= statusCode && {{vendorExtensions.x-http-status-range}}99 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{{/vendorExtensions.x-http-status-range}}
|
||||||
|
{{^vendorExtensions.x-http-status-range}}
|
||||||
public bool Is{{vendorExtensions.x-http-status}} => {{code}} == (int)StatusCode;
|
public bool Is{{vendorExtensions.x-http-status}} => {{code}} == (int)StatusCode;
|
||||||
|
{{/vendorExtensions.x-http-status-range}}
|
||||||
{{/vendorExtensions.x-http-status-is-default}}
|
{{/vendorExtensions.x-http-status-is-default}}
|
||||||
{{#dataType}}
|
{{#dataType}}
|
||||||
|
|
||||||
@ -756,7 +768,7 @@ namespace {{packageName}}.{{apiPackage}}
|
|||||||
result = {{vendorExtensions.x-http-status}}();
|
result = {{vendorExtensions.x-http-status}}();
|
||||||
} catch (Exception e)
|
} catch (Exception e)
|
||||||
{
|
{
|
||||||
OnDeserializationErrorDefaultImplementation(e, (HttpStatusCode){{code}});
|
OnDeserializationErrorDefaultImplementation(e, (HttpStatusCode){{#vendorExtensions.x-http-status-range}}{{.}}{{/vendorExtensions.x-http-status-range}}{{^vendorExtensions.x-http-status-range}}{{code}}{{/vendorExtensions.x-http-status-range}});
|
||||||
}
|
}
|
||||||
|
|
||||||
return result != null;
|
return result != null;
|
||||||
|
@ -120,6 +120,8 @@ paths:
|
|||||||
- sold
|
- sold
|
||||||
default: available
|
default: available
|
||||||
responses:
|
responses:
|
||||||
|
'2XX':
|
||||||
|
description: Anything within 200-299
|
||||||
'200':
|
'200':
|
||||||
description: successful operation
|
description: successful operation
|
||||||
content:
|
content:
|
||||||
@ -135,6 +137,8 @@ paths:
|
|||||||
$ref: '#/components/schemas/Pet'
|
$ref: '#/components/schemas/Pet'
|
||||||
'400':
|
'400':
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
'4XX':
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -133,6 +133,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -148,6 +150,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1308,6 +1320,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1308,6 +1320,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -133,6 +133,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -148,6 +150,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1308,6 +1320,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1308,6 +1320,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -133,6 +133,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -148,6 +150,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1310,6 +1322,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -299,6 +299,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1312,6 +1324,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -297,6 +297,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1310,6 +1322,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -299,6 +299,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1312,6 +1324,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
|
||||||
|
|
||||||
|
@ -296,6 +296,18 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool IsBadRequest { get; }
|
bool IsBadRequest { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode2XX { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
bool IsHttpStatusCode4XX { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -1307,6 +1319,32 @@ namespace Org.OpenAPITools.Api
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public bool IsBadRequest => 400 == (int)StatusCode;
|
public bool IsBadRequest => 400 == (int)StatusCode;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 2XX HttpStatusCode2XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode2XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 200 >= statusCode && 299 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the response is 4XX HttpStatusCode4XX
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public bool IsHttpStatusCode4XX
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
int statusCode = (int)StatusCode;
|
||||||
|
return 400 >= statusCode && 499 <= statusCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
private void OnDeserializationErrorDefaultImplementation(Exception exception, HttpStatusCode httpStatusCode)
|
||||||
{
|
{
|
||||||
bool suppressDefaultLog = false;
|
bool suppressDefaultLog = false;
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -296,6 +296,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
@ -138,6 +138,8 @@ paths:
|
|||||||
type: array
|
type: array
|
||||||
style: form
|
style: form
|
||||||
responses:
|
responses:
|
||||||
|
"2XX":
|
||||||
|
description: Anything within 200-299
|
||||||
"200":
|
"200":
|
||||||
content:
|
content:
|
||||||
application/xml:
|
application/xml:
|
||||||
@ -153,6 +155,8 @@ paths:
|
|||||||
description: successful operation
|
description: successful operation
|
||||||
"400":
|
"400":
|
||||||
description: Invalid status value
|
description: Invalid status value
|
||||||
|
"4XX":
|
||||||
|
description: Anything within 400-499
|
||||||
security:
|
security:
|
||||||
- http_signature_test: []
|
- http_signature_test: []
|
||||||
- petstore_auth:
|
- petstore_auth:
|
||||||
|
@ -284,6 +284,8 @@ catch (ApiException e)
|
|||||||
|-------------|-------------|------------------|
|
|-------------|-------------|------------------|
|
||||||
| **200** | successful operation | - |
|
| **200** | successful operation | - |
|
||||||
| **400** | Invalid status value | - |
|
| **400** | Invalid status value | - |
|
||||||
|
| **2XX** | Anything within 200-299 | - |
|
||||||
|
| **4XX** | Anything within 400-499 | - |
|
||||||
|
|
||||||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user