Show / Hide Table of Contents

Class QuotaGroup

The group information for methods in the CSS API. The quota is shared between all methods in the group. Even if none of the methods within the group have usage the information for the group is returned.

Inheritance
object
QuotaGroup
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Css.v1.Data
Assembly: Google.Apis.Css.v1.dll
Syntax
public class QuotaGroup : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MethodDetails

Output only. List of all methods group quota applies to.

Declaration
[JsonProperty("methodDetails")]
public virtual IList<MethodDetails> MethodDetails { get; set; }
Property Value
Type Description
IList<MethodDetails>

Name

Identifier. The resource name of the quota group. Format: accounts/{account}/quotas/{group} Example: accounts/12345678/quotas/css-products-insert Note: The {group} part is not guaranteed to follow a specific pattern.

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

QuotaLimit

Output only. The maximum number of calls allowed per day for the group.

Declaration
[JsonProperty("quotaLimit")]
public virtual long? QuotaLimit { get; set; }
Property Value
Type Description
long?

QuotaMinuteLimit

Output only. The maximum number of calls allowed per minute for the group.

Declaration
[JsonProperty("quotaMinuteLimit")]
public virtual long? QuotaMinuteLimit { get; set; }
Property Value
Type Description
long?

QuotaUsage

Output only. The current quota usage, meaning the number of calls already made on a given day to the methods in the group. The daily quota limits reset at at 12:00 PM midday UTC.

Declaration
[JsonProperty("quotaUsage")]
public virtual long? QuotaUsage { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX