Show / Hide Table of Contents

Class Schema

The type of API resource. For Schema resources, this is always admin#directory#schema.

Inheritance
System.Object
Schema
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.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class Schema : IDirectResponseSchema

Properties

DisplayName

Display name for the schema.

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

ETag

The ETag of the resource.

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

Fields

A list of fields in the schema.

Declaration
[JsonProperty("fields")]
public virtual IList<SchemaFieldSpec> Fields { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SchemaFieldSpec>

Kind

Kind of resource this is.

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

SchemaId

The unique identifier of the schema (Read-only)

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

SchemaName

The schema's name.

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

Implements

IDirectResponseSchema
Back to top