string VideoThumb { get; set; }

robot_2Generated
code_blocksInput

Description

The VideoThumb property provides a link to the thumbnail video associated with a package in the Sandbox environment. This property is useful for displaying a preview video of the package, which can enhance the user's understanding of the package's content and functionality.

Usage

To access the VideoThumb property, you need to have an instance of the Package class. Once you have the instance, you can retrieve the URL of the thumbnail video as a string.

Example

// Example of accessing the VideoThumb property
Package myPackage = new Package();
string videoThumbnailUrl = myPackage.VideoThumb;

// Use the videoThumbnailUrl to display or process the video thumbnail
// For example, you might use it in a UI component to show a video preview