class Google::Apis::VerifiedaccessV1::SignedData
The wrapper message of any data and its signature.
Attributes
data[RW]
The data to be signed. Corresponds to the JSON property `data` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
signature[RW]
The signature of the data field. Corresponds to the JSON property `signature` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/verifiedaccess_v1/classes.rb, line 83 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/verifiedaccess_v1/classes.rb, line 88 def update!(**args) @data = args[:data] if args.key?(:data) @signature = args[:signature] if args.key?(:signature) end