Show / Hide Table of Contents

Class AccountsResource.LabelsResource.ListRequest

Lists the labels assigned to an account.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListAccountLabelsResponse>
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>
AccountsResource.LabelsResource.ListRequest
Implements
IClientServiceRequest<ListAccountLabelsResponse>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.Xgafv
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.AccessToken
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.Alt
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.Callback
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.Fields
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.Key
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.OauthToken
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.PrettyPrint
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.QuotaUser
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.UploadType
ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>.UploadProtocol
ClientServiceRequest<ListAccountLabelsResponse>.Execute()
ClientServiceRequest<ListAccountLabelsResponse>.ExecuteAsStream()
ClientServiceRequest<ListAccountLabelsResponse>.ExecuteAsync()
ClientServiceRequest<ListAccountLabelsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListAccountLabelsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListAccountLabelsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListAccountLabelsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListAccountLabelsResponse>.GenerateRequestUri()
ClientServiceRequest<ListAccountLabelsResponse>.GetBody()
ClientServiceRequest<ListAccountLabelsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListAccountLabelsResponse>.ETagAction
ClientServiceRequest<ListAccountLabelsResponse>.ModifyRequest
ClientServiceRequest<ListAccountLabelsResponse>.ValidateParameters
ClientServiceRequest<ListAccountLabelsResponse>.RequestParameters
ClientServiceRequest<ListAccountLabelsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
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.ShoppingContent.v2_1
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class ListRequest : ShoppingContentBaseServiceRequest<ListAccountLabelsResponse>, IClientServiceRequest<ListAccountLabelsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, Int64)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, long accountId)
Parameters
Type Name Description
IClientService service
System.Int64 accountId

Properties

AccountId

Required. The account id for whose labels are to be listed.

Declaration
[RequestParameter("accountId", RequestParameterType.Path)]
public virtual long AccountId { get; }
Property Value
Type Description
System.Int64

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListAccountLabelsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListAccountLabelsResponse>.MethodName

PageSize

The maximum number of labels to return. The service may return fewer than this value. If unspecified, at most 50 labels will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

A page token, received from a previous ListAccountLabels call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListAccountLabels must match the call that provided the page token.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListAccountLabelsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ShoppingContent.v2_1.ShoppingContentBaseServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.ListAccountLabelsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top