Class: Google::Apis::ContentV2_1::BuyOnGoogleProgramStatus
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::BuyOnGoogleProgramStatus
- 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
-
#customer_service_pending_email ⇒ String
The customer service pending email.
-
#customer_service_verified_email ⇒ String
Output only.
-
#participation_stage ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuyOnGoogleProgramStatus
constructor
A new instance of BuyOnGoogleProgramStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BuyOnGoogleProgramStatus
Returns a new instance of BuyOnGoogleProgramStatus.
1690 1691 1692 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1690 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer_service_pending_email ⇒ String
The customer service pending email. After verification this field becomes
empty.
Corresponds to the JSON property customerServicePendingEmail
1678 1679 1680 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1678 def customer_service_pending_email @customer_service_pending_email end |
#customer_service_verified_email ⇒ String
Output only. The customer service verified email.
Corresponds to the JSON property customerServiceVerifiedEmail
1683 1684 1685 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1683 def customer_service_verified_email @customer_service_verified_email end |
#participation_stage ⇒ String
Output only. The current participation stage for the program.
Corresponds to the JSON property participationStage
1688 1689 1690 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1688 def participation_stage @participation_stage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1695 1696 1697 1698 1699 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1695 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 |