class PkiExpress::PadesSize

Attributes

height[RW]
width[RW]

Public Class Methods

new(width, height) click to toggle source
# File lib/pki_express/pades_size.rb, line 5
def initialize(width, height)
  @width = width
  @height = height
end

Public Instance Methods

to_model() click to toggle source
# File lib/pki_express/pades_size.rb, line 10
def to_model
  {
      width: @width,
      height: @height,
  }
end