Show / Hide Table of Contents

Class GetAncestryResponse

Response from the projects.getAncestry method.

Inheritance
System.Object
GetAncestryResponse
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.CloudResourceManager.v1.Data
Assembly: Google.Apis.CloudResourceManager.v1.dll
Syntax
public class GetAncestryResponse : IDirectResponseSchema

Properties

Ancestor

Ancestors are ordered from bottom to top of the resource hierarchy. The first ancestor is the project itself, followed by the project's parent, etc..

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

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top