Module: TelvriSecurity

Defined in:
lib/telvri_security/version.rb,
lib/telvri_security.rb,
lib/telvri_security/api_error.rb,
lib/telvri_security/api_client.rb,
lib/telvri_security/configuration.rb,
lib/telvri_security/api_model_base.rb,
lib/telvri_security/models/login_dto.rb,
lib/telvri_security/models/signup_dto.rb,
lib/telvri_security/api/developer_auth_api.rb,
lib/telvri_security/models/check_sim_swap_dto.rb,
lib/telvri_security/models/sim_swap_response_dto.rb,
lib/telvri_security/api/sim_swap_intelligence_api.rb

Overview

#Telvri Security API Gateway

#Developer-first Identity and Security Platform for real-time telco fraud mitigation, including SIM-swap intelligence for trusted application workflows.

The version of the OpenAPI document: 1.0

Generated by: https://openapi-generator.tech Generator version: 7.23.0

Defined Under Namespace

Classes: ApiClient, ApiError, ApiModelBase, CheckSimSwapDto, Configuration, DeveloperAuthApi, LoginDto, SIMSwapIntelligenceApi, SignupDto, SimSwapResponseDto

Constant Summary collapse

VERSION =
'1.0.0'

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block. TelvriSecurity.configure do |config| config.username = "xxx" config.password = "xxx" end If no block given, return the default Configuration object.



38
39
40
41
42
43
44
# File 'lib/telvri_security.rb', line 38

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end