Class: Google::Apis::AdexchangebuyerV1_4::DealServingMetadataDealPauseStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer_v1_4/classes.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb,
generated/google/apis/adexchangebuyer_v1_4/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DealServingMetadataDealPauseStatus

Returns a new instance of DealServingMetadataDealPauseStatus



1311
1312
1313
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1311

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#buyer_pause_reasonString

Corresponds to the JSON property buyerPauseReason

Returns:

  • (String)


1287
1288
1289
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1287

def buyer_pause_reason
  @buyer_pause_reason
end

#first_paused_byString

If the deal is paused, records which party paused the deal first. Corresponds to the JSON property firstPausedBy

Returns:

  • (String)


1292
1293
1294
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1292

def first_paused_by
  @first_paused_by
end

#has_buyer_pausedBoolean Also known as: has_buyer_paused?

Corresponds to the JSON property hasBuyerPaused

Returns:

  • (Boolean)


1297
1298
1299
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1297

def has_buyer_paused
  @has_buyer_paused
end

#has_seller_pausedBoolean Also known as: has_seller_paused?

Corresponds to the JSON property hasSellerPaused

Returns:

  • (Boolean)


1303
1304
1305
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1303

def has_seller_paused
  @has_seller_paused
end

#seller_pause_reasonString

Corresponds to the JSON property sellerPauseReason

Returns:

  • (String)


1309
1310
1311
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1309

def seller_pause_reason
  @seller_pause_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1316
1317
1318
1319
1320
1321
1322
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1316

def update!(**args)
  @buyer_pause_reason = args[:buyer_pause_reason] if args.key?(:buyer_pause_reason)
  @first_paused_by = args[:first_paused_by] if args.key?(:first_paused_by)
  @has_buyer_paused = args[:has_buyer_paused] if args.key?(:has_buyer_paused)
  @has_seller_paused = args[:has_seller_paused] if args.key?(:has_seller_paused)
  @seller_pause_reason = args[:seller_pause_reason] if args.key?(:seller_pause_reason)
end