Class: Moxml::Signature::Model::Transform

Inherits:
Object
  • Object
show all
Defined in:
lib/moxml/signature/model/transform.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(algorithm:, parameters: {}) ⇒ Transform

Returns a new instance of Transform.



9
10
11
12
# File 'lib/moxml/signature/model/transform.rb', line 9

def initialize(algorithm:, parameters: {})
  @algorithm = algorithm
  @parameters = parameters
end

Instance Attribute Details

#algorithmObject

Returns the value of attribute algorithm.



7
8
9
# File 'lib/moxml/signature/model/transform.rb', line 7

def algorithm
  @algorithm
end

#parametersObject

Returns the value of attribute parameters.



7
8
9
# File 'lib/moxml/signature/model/transform.rb', line 7

def parameters
  @parameters
end