Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-lando authored Jan 27, 2025
1 parent 5d3ce1a commit d8ef7c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/model/VideoCreationPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **string** | The title of your new video. |
**subtitle** | **string** | A subtitle of your video. | [optional]
**description** | **string** | A brief description of your video. | [optional]
**source** | **string** | You can either add a video already on the web, by entering the URL of the video, or you can also enter the `videoId` of one of the videos you already have on your api.video acccount, and this will generate a copy of your video. Creating a copy of a video can be especially useful if you want to keep your original video and trim or apply a watermark onto the copy you would create. | [optional]
**_public** | **boolean** | Default: True. If set to `false` the video will become private. More information on private videos can be found [here](https://docs.api.video/delivery/video-privacy-access-management) | [optional]
Expand Down
10 changes: 10 additions & 0 deletions src/model/VideoCreationPayload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export default class VideoCreationPayload {
* The title of your new video.
*/
'title': string;
/**
* A subtitle of your video.
*/
'subtitle'?: string;
/**
* A brief description of your video.
*/
Expand Down Expand Up @@ -79,6 +83,12 @@ export default class VideoCreationPayload {
type: 'string',
format: '',
},
{
name: 'subtitle',
baseName: 'subtitle',
type: 'string',
format: '',
},
{
name: 'description',
baseName: 'description',
Expand Down

0 comments on commit d8ef7c8

Please sign in to comment.