module FormAPI

#API v1

#FormAPI is a service that helps you fill out and sign PDF templates.

OpenAPI spec version: v1

Generated by: openapi-generator.tech OpenAPI Generator version: 3.3.0-SNAPSHOT

#API v1

#FormAPI is a service that helps you fill out and sign PDF templates.

OpenAPI spec version: v1

Generated by: openapi-generator.tech OpenAPI Generator version: 3.3.0-SNAPSHOT

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

FormAPI.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/form_api.rb, line 74
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end