Show / Hide Table of Contents

Class DealServingMetadataDealPauseStatus

Tracks which parties (if any) have paused a deal. The deal is considered paused if has_buyer_paused || has_seller_paused. Each of the has_buyer_paused or the has_seller_paused bits can be set independently.

Inheritance
System.Object
DealServingMetadataDealPauseStatus
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.AdExchangeBuyer.v1_4.Data
Assembly: Google.Apis.AdExchangeBuyer.v1_4.dll
Syntax
public class DealServingMetadataDealPauseStatus : IDirectResponseSchema

Properties

BuyerPauseReason

Declaration
[JsonProperty("buyerPauseReason")]
public virtual string BuyerPauseReason { 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

FirstPausedBy

If the deal is paused, records which party paused the deal first.

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

HasBuyerPaused

Declaration
[JsonProperty("hasBuyerPaused")]
public virtual bool? HasBuyerPaused { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HasSellerPaused

Declaration
[JsonProperty("hasSellerPaused")]
public virtual bool? HasSellerPaused { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SellerPauseReason

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

Implements

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