Class: Google::Apis::AndroidpublisherV3::SubscribeWithGoogleInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV3::SubscribeWithGoogleInfo
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb 
Overview
Information associated with purchases made with 'Subscribe with Google'.
Instance Attribute Summary collapse
- 
  
    
      #email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The email address of the user when the subscription was purchased.
 - 
  
    
      #family_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The family name of the user when the subscription was purchased.
 - 
  
    
      #given_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The given name of the user when the subscription was purchased.
 - 
  
    
      #profile_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Google profile id of the user when the subscription was purchased.
 - 
  
    
      #profile_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The profile name of the user when the subscription was purchased.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SubscribeWithGoogleInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SubscribeWithGoogleInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SubscribeWithGoogleInfo
Returns a new instance of SubscribeWithGoogleInfo.
      5373 5374 5375  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5373 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#email_address ⇒ String
The email address of the user when the subscription was purchased.
Corresponds to the JSON property emailAddress
      5351 5352 5353  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5351 def email_address @email_address end  | 
  
#family_name ⇒ String
The family name of the user when the subscription was purchased.
Corresponds to the JSON property familyName
      5356 5357 5358  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5356 def family_name @family_name end  | 
  
#given_name ⇒ String
The given name of the user when the subscription was purchased.
Corresponds to the JSON property givenName
      5361 5362 5363  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5361 def given_name @given_name end  | 
  
#profile_id ⇒ String
The Google profile id of the user when the subscription was purchased.
Corresponds to the JSON property profileId
      5366 5367 5368  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5366 def profile_id @profile_id end  | 
  
#profile_name ⇒ String
The profile name of the user when the subscription was purchased.
Corresponds to the JSON property profileName
      5371 5372 5373  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5371 def profile_name @profile_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5378 5379 5380 5381 5382 5383 5384  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5378 def update!(**args) @email_address = args[:email_address] if args.key?(:email_address) @family_name = args[:family_name] if args.key?(:family_name) @given_name = args[:given_name] if args.key?(:given_name) @profile_id = args[:profile_id] if args.key?(:profile_id) @profile_name = args[:profile_name] if args.key?(:profile_name) end  |