module ClickSendClient

#ClickSend v3 API

# This is an official SDK for [ClickSend](clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](dashboard.clicksend.com/#/signup/step1/)..*

OpenAPI spec version: 3.1 Contact: support@clicksend.com Generated by: github.com/clicksend-api/clicksend-codegen.git ClickSend Codegen version: 2.4.1-SNAPSHOT

#ClickSend v3 API

# This is an official SDK for [ClickSend](clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](dashboard.clicksend.com/#/signup/step1/)..*

OpenAPI spec version: 3.1 Contact: support@clicksend.com Generated by: github.com/clicksend-api/clicksend-codegen.git ClickSend Codegen version: 2.4.1-SNAPSHOT

Constants

VERSION

Public Class Methods

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

Customize default settings for the SDK using block.

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

If no block given, return the default Configuration object.

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