Class: Google::Apis::AuthorizedbuyersmarketplaceV1::DealPausingInfo

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

Overview

Information related to deal pausing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DealPausingInfo

Returns a new instance of DealPausingInfo.

[View source]

729
730
731
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 729

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

Instance Attribute Details

#pause_reasonString

The reason for the pausing of the deal; empty for active deals. Corresponds to the JSON property pauseReason

Returns:

  • (String)

716
717
718
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 716

def pause_reason
  @pause_reason
end

#pause_roleString

The party that first paused the deal; unspecified for active deals. Corresponds to the JSON property pauseRole

Returns:

  • (String)

721
722
723
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 721

def pause_role
  @pause_role
end

#pausing_consentedBoolean Also known as: pausing_consented?

Whether pausing is consented between buyer and seller for the deal. Corresponds to the JSON property pausingConsented

Returns:

  • (Boolean)

726
727
728
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 726

def pausing_consented
  @pausing_consented
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

734
735
736
737
738
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 734

def update!(**args)
  @pause_reason = args[:pause_reason] if args.key?(:pause_reason)
  @pause_role = args[:pause_role] if args.key?(:pause_role)
  @pausing_consented = args[:pausing_consented] if args.key?(:pausing_consented)
end