Show / Hide Table of Contents

Class ListTaxonomyCategoriesResponse

Response object for ListTaxonomyCategoriesRequest containing matching TaxonomyCategory objects.

Inheritance
object
ListTaxonomyCategoriesResponse
Implements
IMessage<ListTaxonomyCategoriesResponse>
IEquatable<ListTaxonomyCategoriesResponse>
IDeepCloneable<ListTaxonomyCategoriesResponse>
IBufferMessage
IMessage
IPageResponse<TaxonomyCategory>
IEnumerable<TaxonomyCategory>
IEnumerable
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Ads.AdManager.V1
Assembly: Google.Ads.AdManager.V1.dll
Syntax
public sealed class ListTaxonomyCategoriesResponse : IMessage<ListTaxonomyCategoriesResponse>, IEquatable<ListTaxonomyCategoriesResponse>, IDeepCloneable<ListTaxonomyCategoriesResponse>, IBufferMessage, IMessage, IPageResponse<TaxonomyCategory>, IEnumerable<TaxonomyCategory>, IEnumerable

Constructors

ListTaxonomyCategoriesResponse()

Declaration
public ListTaxonomyCategoriesResponse()

ListTaxonomyCategoriesResponse(ListTaxonomyCategoriesResponse)

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

Properties

NextPageToken

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
string
Implements
IPageResponse<TResource>.NextPageToken

TaxonomyCategories

The TaxonomyCategory objects.

Declaration
public RepeatedField<TaxonomyCategory> TaxonomyCategories { get; }
Property Value
Type Description
RepeatedField<TaxonomyCategory>

TotalSize

Total number of TaxonomyCategory objects. If a filter was included in the request, this reflects the total number after the filtering is applied.

total_size will not be calculated in the response unless it has been included in a response field mask. The response field mask can be provided to the method by using the URL parameter $fields or fields, or by using the HTTP/gRPC header X-Goog-FieldMask.

For more information, see https://developers.google.com/ad-manager/api/beta/field-masks

Declaration
public int TotalSize { get; set; }
Property Value
Type Description
int

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<TaxonomyCategory> GetEnumerator()
Returns
Type Description
IEnumerator<TaxonomyCategory>
Implements
IEnumerable<T>.GetEnumerator()
In this article
Back to top Generated by DocFX