Skip to content

Commit

Permalink
Add missing parameter description
Browse files Browse the repository at this point in the history
  • Loading branch information
szekelyzol authored Oct 9, 2024
1 parent acd1cb0 commit 2fffecd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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 @@
5ad86d4a6e6bdfede262551219ba43c8a645a86bc20fc9740b6f950e86f99f1d
9d05425d4fb2c3a73804ed5a27232eda6751260b0947f6b4c736cc96df300103
2 changes: 1 addition & 1 deletion docs/CaptionsUpdatePayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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)

3 changes: 2 additions & 1 deletion src/Model/CaptionsUpdatePayload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ namespace ApiVideo.Model {
[DataContract]
public class CaptionsUpdatePayload: DeepObject {
/// <summary>
/// Gets or Sets Default
/// Set this parameter to `true` to define a caption as the default for a video.
/// </summary>
/// <value>Set this parameter to `true` to define a caption as the default for a video.</value>
[DataMember(Name="default", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "default")]
public Nullable<bool> _default { get; set; }
Expand Down

0 comments on commit 2fffecd

Please sign in to comment.