< Summary

Class:Microsoft.Azure.CognitiveServices.Search.CustomSearch.Models.CreativeWork
Assembly:Microsoft.Azure.CognitiveServices.Search.BingCustomSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomSearch\src\Generated\CustomSearch\Models\CreativeWork.cs
Covered lines:2
Uncovered lines:8
Coverable lines:10
Total lines:72
Line coverage:20% (2 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ThumbnailUrl()-0%100%
get_Provider()-0%100%
get_Text()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomSearch\src\Generated\CustomSearch\Models\CreativeWork.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.CustomSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    public partial class CreativeWork : Thing
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the CreativeWork class.
 18        /// </summary>
 219        public CreativeWork()
 20        {
 21            CustomInit();
 222        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the CreativeWork class.
 26        /// </summary>
 27        /// <param name="id">A String identifier.</param>
 28        /// <param name="webSearchUrl">The URL To Bing's search result for this
 29        /// item.</param>
 30        /// <param name="name">The name of the thing represented by this
 31        /// object.</param>
 32        /// <param name="url">The URL to get more information about the thing
 33        /// represented by this object.</param>
 34        /// <param name="description">A short description of the item.</param>
 35        /// <param name="bingId">An ID that uniquely identifies this
 36        /// item.</param>
 37        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 38        /// item.</param>
 39        /// <param name="provider">The source of the creative work.</param>
 40        public CreativeWork(string id = default(string), string webSearchUrl = default(string), string name = default(st
 041            : base(id, webSearchUrl, name, url, description, bingId)
 42        {
 043            ThumbnailUrl = thumbnailUrl;
 044            Provider = provider;
 045            Text = text;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets the URL to a thumbnail of the item.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "thumbnailUrl")]
 058        public string ThumbnailUrl { get; private set; }
 59
 60        /// <summary>
 61        /// Gets the source of the creative work.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "provider")]
 064        public IList<Thing> Provider { get; private set; }
 65
 66        /// <summary>
 67        /// </summary>
 68        [JsonProperty(PropertyName = "text")]
 069        public string Text { get; private set; }
 70
 71    }
 72}