Class: Google::Apis::OndemandscanningV1::EnvelopeSignature

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnvelopeSignature

Returns a new instance of EnvelopeSignature.



888
889
890
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 888

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

Instance Attribute Details

#keyidString

Corresponds to the JSON property keyid

Returns:

  • (String)


880
881
882
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 880

def keyid
  @keyid
end

#sigString

Corresponds to the JSON property sig NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


886
887
888
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 886

def sig
  @sig
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



893
894
895
896
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 893

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