Class: Google::Apis::ContentV2_1::BuyOnGoogleProgramStatus

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

Overview

Response message for the GetProgramStatus method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuyOnGoogleProgramStatus

Returns a new instance of BuyOnGoogleProgramStatus.



1673
1674
1675
# File 'lib/google/apis/content_v2_1/classes.rb', line 1673

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

Instance Attribute Details

#customer_service_pending_emailString

The customer service pending email. Corresponds to the JSON property customerServicePendingEmail

Returns:

  • (String)


1661
1662
1663
# File 'lib/google/apis/content_v2_1/classes.rb', line 1661

def customer_service_pending_email
  @customer_service_pending_email
end

#customer_service_verified_emailString

The customer service verified email. Corresponds to the JSON property customerServiceVerifiedEmail

Returns:

  • (String)


1666
1667
1668
# File 'lib/google/apis/content_v2_1/classes.rb', line 1666

def customer_service_verified_email
  @customer_service_verified_email
end

#participation_stageString

The current participation stage for the program. Corresponds to the JSON property participationStage

Returns:

  • (String)


1671
1672
1673
# File 'lib/google/apis/content_v2_1/classes.rb', line 1671

def participation_stage
  @participation_stage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1678
1679
1680
1681
1682
# File 'lib/google/apis/content_v2_1/classes.rb', line 1678

def update!(**args)
  @customer_service_pending_email = args[:customer_service_pending_email] if args.key?(:customer_service_pending_email)
  @customer_service_verified_email = args[:customer_service_verified_email] if args.key?(:customer_service_verified_email)
  @participation_stage = args[:participation_stage] if args.key?(:participation_stage)
end