Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
=begin
#Metadata Validation API
#API for the metadata validation service.
OpenAPI spec version: 1.0.0
Contact: ian@iay.org.uk
Generated by: https://github.com/swagger-api/swagger-codegen.git
Swagger Codegen version: 2.3.1
=end
# Common files
require 'inc-validator-client/api_client'
require 'inc-validator-client/api_error'
require 'inc-validator-client/version'
require 'inc-validator-client/configuration'
# Models
require 'inc-validator-client/models/inline_response_404'
require 'inc-validator-client/models/status'
require 'inc-validator-client/models/validator'
# APIs
require 'inc-validator-client/api/validation_api'
module ValidatorClient
class << self
# Customize default settings for the SDK using block.
# ValidatorClient.configure do |config|
# config.username = "xxx"
# config.password = "xxx"
# end
# If no block given, return the default Configuration object.
def configure
if block_given?
yield(Configuration.default)
else
Configuration.default
end
end
end
end