From a14958e51d934f2c9e8010d14ba041760be6f962 Mon Sep 17 00:00:00 2001 From: szekelyzol Date: Wed, 9 Oct 2024 13:59:06 +0000 Subject: [PATCH] Add missing parameter description --- docs/model/CaptionsUpdatePayload.md | 2 +- src/model/CaptionsUpdatePayload.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/model/CaptionsUpdatePayload.md b/docs/model/CaptionsUpdatePayload.md index 8ff37e8..21519b1 100644 --- a/docs/model/CaptionsUpdatePayload.md +++ b/docs/model/CaptionsUpdatePayload.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**_default** | **boolean** | | [optional] +**_default** | **boolean** | Set this parameter to `true` to define a caption as the default for a video. | [optional] diff --git a/src/model/CaptionsUpdatePayload.ts b/src/model/CaptionsUpdatePayload.ts index f1f77c9..6440857 100644 --- a/src/model/CaptionsUpdatePayload.ts +++ b/src/model/CaptionsUpdatePayload.ts @@ -12,6 +12,9 @@ import AttributeType from './AttributeType.js'; export default class CaptionsUpdatePayload { + /** + * Set this parameter to `true` to define a caption as the default for a video. + */ '_default'?: boolean; static readonly discriminator?: string = undefined;