module AvmClient

#AVM

#This is api for AVM (automated valuation machine)

The version of the AvmClient document: 1.0.0 Contact: info@enbisys.com Generated by: openapi-generator.tech OpenAPI Generator version: 4.0.3

#AVM

#This is api for AVM (automated valuation machine)

The version of the AvmClient document: 1.0.0 Contact: info@enbisys.com Generated by: openapi-generator.tech OpenAPI Generator version: 4.0.3

#AVM

#This is api for AVM (automated valuation machine)

The version of the AvmClient document: 1.0.0 Contact: info@enbisys.com Generated by: openapi-generator.tech OpenAPI Generator version: 4.0.3

Constants

VERSION

Public Class Methods

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

Customize default settings for the SDK using block.

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

If no block given, return the default Configuration object.

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