Show / Hide Table of Contents

Class RemarketingListShare

Contains properties of a remarketing list's sharing information. Sharing allows other accounts or advertisers to target to your remarketing lists. This resource can be used to manage remarketing list sharing to other accounts and advertisers.

Inheritance
System.Object
RemarketingListShare
Implements
IDirectResponseSchema
Inherited Members
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class RemarketingListShare : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#remarketingListShare".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

RemarketingListId

Remarketing list ID. This is a read-only, auto-generated field.

Declaration
[JsonProperty("remarketingListId")]
public virtual long? RemarketingListId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SharedAccountIds

Accounts that the remarketing list is shared with.

Declaration
[JsonProperty("sharedAccountIds")]
public virtual IList<long?> SharedAccountIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

SharedAdvertiserIds

Advertisers that the remarketing list is shared with.

Declaration
[JsonProperty("sharedAdvertiserIds")]
public virtual IList<long?> SharedAdvertiserIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

Implements

IDirectResponseSchema
In This Article
Back to top