Show / Hide Table of Contents

Class GoogleApiServiceusageV1beta1GetServiceIdentityResponse

Response message for getting service identity.

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

Properties

ETag

The ETag of the item.

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

Identity

Service identity that service producer can use to access consumer resources. If exists is true, it contains email and unique_id. If exists is false, it contains pre-constructed email and empty unique_id.

Declaration
[JsonProperty("identity")]
public virtual GoogleApiServiceusageV1beta1ServiceIdentity Identity { get; set; }
Property Value
Type Description
GoogleApiServiceusageV1beta1ServiceIdentity

State

Service identity state.

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

Implements

IDirectResponseSchema
In This Article
Back to top