Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing parameter description #91

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
5ad86d4a6e6bdfede262551219ba43c8a645a86bc20fc9740b6f950e86f99f1d
9d05425d4fb2c3a73804ed5a27232eda6751260b0947f6b4c736cc96df300103
1 change: 1 addition & 0 deletions Sources/Models/CaptionsUpdatePayload.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import AnyCodable

public struct CaptionsUpdatePayload: Codable, Hashable {

/** Set this parameter to `true` to define a caption as the default for a video. */
public var _default: Bool?

public init(_default: Bool? = nil) {
Expand Down
2 changes: 1 addition & 1 deletion docs/CaptionsUpdatePayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**_default** | **Bool** | | [optional]
**_default** | **Bool** | Set this parameter to `true` to define a caption as the default for a video. | [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
Loading