Show / Hide Table of Contents

Class CustomBiddingAlgorithm

A single custom bidding algorithm.

Inheritance
System.Object
CustomBiddingAlgorithm
Implements
Google.Apis.Requests.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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class CustomBiddingAlgorithm : IDirectResponseSchema

Properties

AdvertiserId

Immutable. The unique ID of the advertiser that owns the custom bidding algorithm.

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

CustomBiddingAlgorithmId

Output only. The unique ID of the custom bidding algorithm. Assigned by the system.

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

CustomBiddingAlgorithmType

Required. Immutable. The type of custom bidding algorithm.

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

DisplayName

Required. The display name of the custom bidding algorithm. Must be UTF-8 encoded with a maximum size of 240 bytes.

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

EntityStatus

Controls whether or not the custom bidding algorithm can be used as a bidding strategy. Accepted values are:

  • ENTITY_STATUS_ACTIVE * ENTITY_STATUS_ARCHIVED
Declaration
[JsonProperty("entityStatus")]
public virtual string EntityStatus { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Name

Output only. The resource name of the custom bidding algorithm.

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

PartnerId

Immutable. The unique ID of the partner that owns the custom bidding algorithm.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top