Skip to content

Commit 2da8c8b

Browse files
authored
Add summary feature
1 parent f9b74cd commit 2da8c8b

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9d05425d4fb2c3a73804ed5a27232eda6751260b0947f6b4c736cc96df300103
1+
75a006cdf68c85622c0702783e75142e6bca1e6b4f5a74a2df95c85e9482a1c6

Sources/Models/NotFound.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ import AnyCodable
1212

1313
public struct NotFound: Codable, Hashable {
1414

15+
/** A link to the error documentation. */
1516
public var type: String?
17+
/** A description of the error that occurred. */
1618
public var title: String?
19+
/** The name of the parameter that caused the error. */
1720
public var name: String?
21+
/** The HTTP status code. */
1822
public var status: Int?
1923

2024
public init(type: String? = nil, title: String? = nil, name: String? = nil, status: Int? = nil) {

docs/NotFound.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**type** | **String** | | [optional]
7-
**title** | **String** | | [optional]
8-
**name** | **String** | | [optional]
9-
**status** | **Int** | | [optional]
6+
**type** | **String** | A link to the error documentation. | [optional]
7+
**title** | **String** | A description of the error that occurred. | [optional]
8+
**name** | **String** | The name of the parameter that caused the error. | [optional]
9+
**status** | **Int** | The HTTP status code. | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

0 commit comments

Comments
 (0)