class Google::Apis::ContentV2_1::BuyOnGoogleProgramStatus
Response message for the GetProgramStatus method.
Attributes
customer_service_pending_email[RW]
The customer service pending email. After verification this field becomes empty. Corresponds to the JSON property `customerServicePendingEmail` @return [String]
customer_service_verified_email[RW]
Output only. The customer service verified email. Corresponds to the JSON property `customerServiceVerifiedEmail` @return [String]
participation_stage[RW]
Output only. The current participation stage for the program. Corresponds to the JSON property `participationStage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 1690 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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