Skip to content

Commit

Permalink
Merge pull request #228 from apivideo/Update-parameter-description
Browse files Browse the repository at this point in the history
Add missing parameter description
  • Loading branch information
bot-api-video authored Oct 9, 2024
2 parents c38bb99 + a14958e commit d0bc801
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/model/CaptionsUpdatePayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]



3 changes: 3 additions & 0 deletions src/model/CaptionsUpdatePayload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d0bc801

Please sign in to comment.