Show / Hide Table of Contents

Class TypeInfo

Type Information. Contains detailed information about a composite type, base type, or base type with specific collection.

Inheritance
System.Object
TypeInfo
Implements
IDirectResponseSchema
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.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class TypeInfo : IDirectResponseSchema

Properties

Description

The description of the type.

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

DocumentationLink

For swagger 2.0 externalDocs field will be used. For swagger 1.2 this field will be empty.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

Output only. Type of the output. Always deploymentManager#TypeInfo for TypeInfo.

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

Name

The base type or composite type name.

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

Schema

For base types with a collection, we return a schema and documentation link For template types, we return only a schema

Declaration
[JsonProperty("schema")]
public virtual TypeInfoSchemaInfo Schema { get; set; }
Property Value
Type Description
TypeInfoSchemaInfo

SelfLink

Output only. Self link for the type provider.

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

Title

The title on the API descriptor URL provided.

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

Implements

IDirectResponseSchema
Back to top