Skip to content

Commit

Permalink
Add summary feature
Browse files Browse the repository at this point in the history
  • Loading branch information
szekelyzol authored Oct 21, 2024
1 parent 984d934 commit 41052da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6f374764cf476ad001123c84953d1980aaf6bc352573020d111594ab74058bf6
fa7f7f8c606b69d3dd31980ebbed0f1f0e18756b7544288b3b919f35d99b61bd
4 changes: 4 additions & 0 deletions Sources/Models/NotFound.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
8 changes: 4 additions & 4 deletions docs/NotFound.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 41052da

Please sign in to comment.