Class: Google::Apis::AndroidpublisherV3::SubscribeWithGoogleInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SubscribeWithGoogleInfo

Returns a new instance of SubscribeWithGoogleInfo.



2958
2959
2960
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2958

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

Instance Attribute Details

#email_addressString

The email address of the user when the subscription was purchased. Corresponds to the JSON property emailAddress

Returns:

  • (String)


2936
2937
2938
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2936

def email_address
  @email_address
end

#family_nameString

The family name of the user when the subscription was purchased. Corresponds to the JSON property familyName

Returns:

  • (String)


2941
2942
2943
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2941

def family_name
  @family_name
end

#given_nameString

The given name of the user when the subscription was purchased. Corresponds to the JSON property givenName

Returns:

  • (String)


2946
2947
2948
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2946

def given_name
  @given_name
end

#profile_idString

The Google profile id of the user when the subscription was purchased. Corresponds to the JSON property profileId

Returns:

  • (String)


2951
2952
2953
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2951

def profile_id
  @profile_id
end

#profile_nameString

The profile name of the user when the subscription was purchased. Corresponds to the JSON property profileName

Returns:

  • (String)


2956
2957
2958
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2956

def profile_name
  @profile_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2963
2964
2965
2966
2967
2968
2969
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2963

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