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.



1225
1226
1227
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1225

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

Instance Attribute Details

#buyer_pause_reasonString

Corresponds to the JSON property buyerPauseReason

Returns:

  • (String)


1201
1202
1203
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1201

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)


1206
1207
1208
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1206

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)


1211
1212
1213
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1211

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)


1217
1218
1219
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1217

def has_seller_paused
  @has_seller_paused
end

#seller_pause_reasonString

Corresponds to the JSON property sellerPauseReason

Returns:

  • (String)


1223
1224
1225
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1223

def seller_pause_reason
  @seller_pause_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1230
1231
1232
1233
1234
1235
1236
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 1230

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