class Google::Apis::SasportalV1alpha1::SasPortalCreateSignedDeviceRequest
Request for CreateSignedDevice.
Attributes
encoded_device[RW]
Required. JSON Web Token signed using a CPI private key. Payload must be the JSON encoding of the device. The user_id field must be set. Corresponds to the JSON property `encodedDevice` NOTE: Values are automatically base64 encoded/decoded in the client library. @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]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 95 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 100 def update!(**args) @encoded_device = args[:encoded_device] if args.key?(:encoded_device) @installer_id = args[:installer_id] if args.key?(:installer_id) end