Class: Google::Apis::AndroidpublisherV3::EnrollAppResponse

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

Response to enroll an app into Play signing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnrollAppResponse

Returns a new instance of EnrollAppResponse.



3929
3930
3931
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3929

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

Instance Attribute Details

#signing_certificateGoogle::Apis::AndroidpublisherV3::CertificateHashes

Hash digests of a certificate. Corresponds to the JSON property signingCertificate



3922
3923
3924
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3922

def signing_certificate
  @signing_certificate
end

#upload_certificateGoogle::Apis::AndroidpublisherV3::CertificateHashes

Hash digests of a certificate. Corresponds to the JSON property uploadCertificate



3927
3928
3929
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3927

def upload_certificate
  @upload_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3934
3935
3936
3937
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 3934

def update!(**args)
  @signing_certificate = args[:signing_certificate] if args.key?(:signing_certificate)
  @upload_certificate = args[:upload_certificate] if args.key?(:upload_certificate)
end