< Summary

Class:Microsoft.Azure.CognitiveServices.Search.WebSearch.Models.VideoObject
Assembly:Microsoft.Azure.CognitiveServices.Search.BingWebSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\VideoObject.cs
Covered lines:2
Uncovered lines:20
Coverable lines:22
Total lines:117
Line coverage:9% (2 of 22)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_MotionThumbnailUrl()-0%100%
get_MotionThumbnailId()-0%100%
get_EmbedHtml()-0%100%
get_AllowHttpsEmbed()-0%100%
get_ViewCount()-0%100%
get_Thumbnail()-0%100%
get_VideoId()-0%100%
get_AllowMobileEmbed()-0%100%
get_IsSuperfresh()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingWebSearch\src\Generated\WebSearch\Models\VideoObject.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.Search.WebSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Defines a video object that is relevant to the query.
 16    /// </summary>
 17    public partial class VideoObject : MediaObject
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the VideoObject class.
 21        /// </summary>
 1622        public VideoObject()
 23        {
 24            CustomInit();
 1625        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the VideoObject class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="webSearchUrl">The URL To Bing's search result for this
 32        /// item.</param>
 33        /// <param name="name">The name of the thing represented by this
 34        /// object.</param>
 35        /// <param name="url">The URL to get more information about the thing
 36        /// represented by this object.</param>
 37        /// <param name="description">A short description of the item.</param>
 38        /// <param name="bingId">An ID that uniquely identifies this
 39        /// item.</param>
 40        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 41        /// item.</param>
 42        /// <param name="provider">The source of the creative work.</param>
 43        /// <param name="contentUrl">Original URL to retrieve the source (file)
 44        /// for the media object (e.g the source URL for the image).</param>
 45        /// <param name="hostPageUrl">URL of the page that hosts the media
 46        /// object.</param>
 47        /// <param name="width">The width of the source media object, in
 48        /// pixels.</param>
 49        /// <param name="height">The height of the source media object, in
 50        /// pixels.</param>
 51        public VideoObject(string id = default(string), string webSearchUrl = default(string), string name = default(str
 052            : base(id, webSearchUrl, name, url, image, description, bingId, thumbnailUrl, provider, text, contentUrl, ho
 53        {
 054            MotionThumbnailUrl = motionThumbnailUrl;
 055            MotionThumbnailId = motionThumbnailId;
 056            EmbedHtml = embedHtml;
 057            AllowHttpsEmbed = allowHttpsEmbed;
 058            ViewCount = viewCount;
 059            Thumbnail = thumbnail;
 060            VideoId = videoId;
 061            AllowMobileEmbed = allowMobileEmbed;
 062            IsSuperfresh = isSuperfresh;
 63            CustomInit();
 064        }
 65
 66        /// <summary>
 67        /// An initialization method that performs custom operations like setting defaults
 68        /// </summary>
 69        partial void CustomInit();
 70
 71        /// <summary>
 72        /// </summary>
 73        [JsonProperty(PropertyName = "motionThumbnailUrl")]
 074        public string MotionThumbnailUrl { get; private set; }
 75
 76        /// <summary>
 77        /// </summary>
 78        [JsonProperty(PropertyName = "motionThumbnailId")]
 079        public string MotionThumbnailId { get; private set; }
 80
 81        /// <summary>
 82        /// </summary>
 83        [JsonProperty(PropertyName = "embedHtml")]
 084        public string EmbedHtml { get; private set; }
 85
 86        /// <summary>
 87        /// </summary>
 88        [JsonProperty(PropertyName = "allowHttpsEmbed")]
 089        public bool? AllowHttpsEmbed { get; private set; }
 90
 91        /// <summary>
 92        /// </summary>
 93        [JsonProperty(PropertyName = "viewCount")]
 094        public int? ViewCount { get; private set; }
 95
 96        /// <summary>
 97        /// </summary>
 98        [JsonProperty(PropertyName = "thumbnail")]
 099        public ImageObject Thumbnail { get; private set; }
 100
 101        /// <summary>
 102        /// </summary>
 103        [JsonProperty(PropertyName = "videoId")]
 0104        public string VideoId { get; private set; }
 105
 106        /// <summary>
 107        /// </summary>
 108        [JsonProperty(PropertyName = "allowMobileEmbed")]
 0109        public bool? AllowMobileEmbed { get; private set; }
 110
 111        /// <summary>
 112        /// </summary>
 113        [JsonProperty(PropertyName = "isSuperfresh")]
 0114        public bool? IsSuperfresh { get; private set; }
 115
 116    }
 117}