Show / Hide Table of Contents

Class ListGoogleAdsLinksResponse

Response message for ListGoogleAdsLinks RPC.

Inheritance
System.Object
ListGoogleAdsLinksResponse
Implements
Google.Protobuf.IMessage<ListGoogleAdsLinksResponse>
System.IEquatable<ListGoogleAdsLinksResponse>
Google.Protobuf.IDeepCloneable<ListGoogleAdsLinksResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageResponse<GoogleAdsLink>
System.Collections.Generic.IEnumerable<GoogleAdsLink>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class ListGoogleAdsLinksResponse : IMessage<ListGoogleAdsLinksResponse>, IEquatable<ListGoogleAdsLinksResponse>, IDeepCloneable<ListGoogleAdsLinksResponse>, IBufferMessage, IMessage, IPageResponse<GoogleAdsLink>, IEnumerable<GoogleAdsLink>, IEnumerable

Constructors

ListGoogleAdsLinksResponse()

Declaration
public ListGoogleAdsLinksResponse()

ListGoogleAdsLinksResponse(ListGoogleAdsLinksResponse)

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

Properties

GoogleAdsLinks

List of GoogleAdsLinks.

Declaration
public RepeatedField<GoogleAdsLink> GoogleAdsLinks { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<GoogleAdsLink>

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
System.String
Implements
Google.Api.Gax.Grpc.IPageResponse<TResource>.NextPageToken

Methods

GetEnumerator()

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

Declaration
public IEnumerator<GoogleAdsLink> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<GoogleAdsLink>
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator
Implements
System.Collections.IEnumerable.GetEnumerator()
Back to top