Show / Hide Table of Contents

Class DirectoryList.ItemsData

Inheritance
System.Object
DirectoryList.ItemsData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Discovery.v1.Data
Assembly: Google.Apis.Discovery.v1.dll
Syntax
public class ItemsData

Properties

Description

The description of this API.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

DiscoveryLink

A link to the discovery document.

Declaration
[JsonProperty("discoveryLink")]
public virtual string DiscoveryLink { get; set; }
Property Value
Type Description
System.String

DiscoveryRestUrl

The URL for the discovery REST document.

Declaration
[JsonProperty("discoveryRestUrl")]
public virtual string DiscoveryRestUrl { get; set; }
Property Value
Type Description
System.String

DocumentationLink

A link to human readable documentation for the API.

Declaration
[JsonProperty("documentationLink")]
public virtual string DocumentationLink { get; set; }
Property Value
Type Description
System.String

Icons

Links to 16x16 and 32x32 icons representing the API.

Declaration
[JsonProperty("icons")]
public virtual DirectoryList.ItemsData.IconsData Icons { get; set; }
Property Value
Type Description
DirectoryList.ItemsData.IconsData

Id

The id of this API.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Kind

The kind for this response.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Labels

Labels for the status of this API, such as labs or deprecated.

Declaration
[JsonProperty("labels")]
public virtual IList<string> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Name

The name of the API.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Preferred

True if this version is the preferred version to use.

Declaration
[JsonProperty("preferred")]
public virtual bool? Preferred { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Title

The title of this API.

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Version

The version of the API.

Declaration
[JsonProperty("version")]
public virtual string Version { get; set; }
Property Value
Type Description
System.String
Back to top