class Google::Apis::SasportalV1alpha1::SasPortalValidateInstallerRequest
Request for ValidateInstaller.
Attributes
encoded_secret[RW]
Required. JSON Web Token signed using a CPI private key. Payload must include a “secret” claim whose value is the secret. Corresponds to the JSON property `encodedSecret` @return [String]
installer_id[RW]
Required. Unique installer id (CPI ID) from the Certified Professional Installers database. Corresponds to the JSON property `installerId` @return [String]
secret[RW]
Required. Secret returned by the GenerateSecret. Corresponds to the JSON property `secret` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 1220 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 1225 def update!(**args) @encoded_secret = args[:encoded_secret] if args.key?(:encoded_secret) @installer_id = args[:installer_id] if args.key?(:installer_id) @secret = args[:secret] if args.key?(:secret) end