Show / Hide Table of Contents

Class QuotaStatus

Current state for a particular quota group.

Inheritance
System.Object
QuotaStatus
Implements
Google.Protobuf.IMessage<QuotaStatus>
System.IEquatable<QuotaStatus>
Google.Protobuf.IDeepCloneable<QuotaStatus>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class QuotaStatus : IMessage<QuotaStatus>, IEquatable<QuotaStatus>, IDeepCloneable<QuotaStatus>, IBufferMessage, IMessage

Constructors

QuotaStatus()

Declaration
public QuotaStatus()

QuotaStatus(QuotaStatus)

Declaration
public QuotaStatus(QuotaStatus other)
Parameters
Type Name Description
QuotaStatus other

Properties

Consumed

Quota consumed by this request.

Declaration
public int Consumed { get; set; }
Property Value
Type Description
System.Int32

Remaining

Quota remaining after this request.

Declaration
public int Remaining { get; set; }
Property Value
Type Description
System.Int32
In This Article
Back to top