module DyspatchClient

#Dyspatch API

## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](github.com/getdyspatch/dyspatch-java) - [Javascript](github.com/getdyspatch/dyspatch-javascript) - [Python](github.com/getdyspatch/dyspatch-python) - [C#](github.com/getdyspatch/dyspatch-dotnet) - [Go](github.com/getdyspatch/dyspatch-golang) - [Ruby](github.com/getdyspatch/dyspatch-ruby)

The version of the OpenAPI document: 2020.11 Contact: support@dyspatch.io Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

#Dyspatch API

## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](github.com/getdyspatch/dyspatch-java) - [Javascript](github.com/getdyspatch/dyspatch-javascript) - [Python](github.com/getdyspatch/dyspatch-python) - [C#](github.com/getdyspatch/dyspatch-dotnet) - [Go](github.com/getdyspatch/dyspatch-golang) - [Ruby](github.com/getdyspatch/dyspatch-ruby)

The version of the OpenAPI document: 2020.11 Contact: support@dyspatch.io Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

#Dyspatch API

## Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](github.com/getdyspatch/dyspatch-java) - [Javascript](github.com/getdyspatch/dyspatch-javascript) - [Python](github.com/getdyspatch/dyspatch-python) - [C#](github.com/getdyspatch/dyspatch-dotnet) - [Go](github.com/getdyspatch/dyspatch-golang) - [Ruby](github.com/getdyspatch/dyspatch-ruby)

The version of the OpenAPI document: 2020.11 Contact: support@dyspatch.io Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

Constants

VERSION

Public Class Methods

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

Customize default settings for the SDK using block.

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

If no block given, return the default Configuration object.

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