module OpenapiClient
#Omnichannel API
#Messente's API which allows sending messages via various channels with fallback options.
OpenAPI spec version: 0.0.2 Contact: messente@messente.com Generated by: openapi-generator.tech OpenAPI Generator version: 4.0.0-SNAPSHOT
#Omnichannel API
#Messente's API which allows sending messages via various channels with fallback options.
OpenAPI spec version: 0.0.2 Contact: messente@messente.com Generated by: openapi-generator.tech OpenAPI Generator version: 4.0.0-SNAPSHOT
Constants
- VERSION
Public Class Methods
configure() { |default| ... }
click to toggle source
Customize default settings for the SDK using block.
OpenapiClient.configure do |config| config.username = "xxx" config.password = "xxx" end
If no block given, return the default Configuration
object.
# File lib/openapi_client.rb, line 53 def configure if block_given? yield(Configuration.default) else Configuration.default end end