Show / Hide Table of Contents

Class MethodQuota

The quota information per method in the Content API.

Inheritance
object
MethodQuota
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.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class MethodQuota : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Method

The method name, for example products.list. Method name does not contain version because quota can be shared between different API versions of the same method.

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

QuotaLimit

The current quota limit per day, meaning the maximum number of calls for the method.

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

QuotaUsage

The current quota usage, meaning the number of calls already made to the method.

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