Class: Google::Apis::OndemandscanningV1beta1::EnvelopeSignature
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::EnvelopeSignature
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#keyid ⇒ String
Corresponds to the JSON property
keyid
. -
#sig ⇒ String
Corresponds to the JSON property
sig
NOTE: Values are automatically base64 encoded/decoded in the client library.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EnvelopeSignature
constructor
A new instance of EnvelopeSignature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EnvelopeSignature
Returns a new instance of EnvelopeSignature.
1075 1076 1077 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#keyid ⇒ String
Corresponds to the JSON property keyid
1067 1068 1069 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1067 def keyid @keyid end |
#sig ⇒ String
Corresponds to the JSON property sig
NOTE: Values are automatically base64 encoded/decoded in the client library.
1073 1074 1075 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1073 def sig @sig end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1080 1081 1082 1083 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1080 def update!(**args) @keyid = args[:keyid] if args.key?(:keyid) @sig = args[:sig] if args.key?(:sig) end |