module SmoochApi

#Smooch

#The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](docs.smooch.io).

OpenAPI spec version: 5.34

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.2.3-SNAPSHOT

#Smooch

#The Smooch API is a unified interface for powering messaging in your customer experiences across every channel. Our API speeds access to new markets, reduces time to ship, eliminates complexity, and helps you build the best experiences for your customers. For more information, visit our [official documentation](docs.smooch.io).

OpenAPI spec version: 5.34

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.2.3-SNAPSHOT

Constants

VERSION

Public Class Methods

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

Customize default settings for the SDK using block.

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

If no block given, return the default Configuration object.

# File lib/smooch-api.rb, line 135
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end