From bb23e2ea5ed12fcc06e39bc530f9f3784ae76abd Mon Sep 17 00:00:00 2001 From: szekelyzol Date: Fri, 18 Oct 2024 14:50:41 +0000 Subject: [PATCH] Add summary feature --- .openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 | 2 +- Sources/Models/NotFound.swift | 4 ++++ docs/NotFound.md | 8 ++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 index ccf8a5a..b930c86 100644 --- a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 +++ b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 @@ -1 +1 @@ -9d05425d4fb2c3a73804ed5a27232eda6751260b0947f6b4c736cc96df300103 \ No newline at end of file +92f534e12eeb57fda284e0323fdf986652b4cc901acefd85b8c0fdfa9d64fca3 \ No newline at end of file diff --git a/Sources/Models/NotFound.swift b/Sources/Models/NotFound.swift index c836f7c..87efdb1 100644 --- a/Sources/Models/NotFound.swift +++ b/Sources/Models/NotFound.swift @@ -12,9 +12,13 @@ import AnyCodable public struct NotFound: Codable, Hashable { + /** A link to the error documentation. */ public var type: String? + /** A description of the error that occurred. */ public var title: String? + /** The name of the parameter that caused the error. */ public var name: String? + /** The HTTP status code. */ public var status: Int? public init(type: String? = nil, title: String? = nil, name: String? = nil, status: Int? = nil) { diff --git a/docs/NotFound.md b/docs/NotFound.md index 122997f..426b1d2 100644 --- a/docs/NotFound.md +++ b/docs/NotFound.md @@ -3,10 +3,10 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**type** | **String** | | [optional] -**title** | **String** | | [optional] -**name** | **String** | | [optional] -**status** | **Int** | | [optional] +**type** | **String** | A link to the error documentation. | [optional] +**title** | **String** | A description of the error that occurred. | [optional] +**name** | **String** | The name of the parameter that caused the error. | [optional] +**status** | **Int** | The HTTP status code. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)