Hvl System Setting Server

SystemSettingAPI

getBooleanSettingByCode

Gets boolean setting by code


/settings/boolean-setting/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/boolean-setting/by-code/{code}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseBoolean result = apiInstance.getBooleanSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getBooleanSettingByCode");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseBoolean result = apiInstance.getBooleanSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getBooleanSettingByCode");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets boolean setting by code
[apiInstance getBooleanSettingByCodeWith:code
              completionHandler: ^(HvlResponseBoolean output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBooleanSettingByCode(code, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getBooleanSettingByCodeExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 

            try
            {
                // Gets boolean setting by code
                HvlResponseBoolean result = apiInstance.getBooleanSettingByCode(code);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getBooleanSettingByCode: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 

try {
    $result = $api_instance->getBooleanSettingByCode($code);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getBooleanSettingByCode: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 

eval { 
    my $result = $api_instance->getBooleanSettingByCode(code => $code);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getBooleanSettingByCode: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 

try: 
    # Gets boolean setting by code
    api_response = api_instance.get_boolean_setting_by_code(code)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getBooleanSettingByCode: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required

Responses

Status: 200 - OK


getBooleanSettingByCodeAndTenant

Gets boolean setting by code and tenant


/settings/boolean-setting-with-tenant/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/boolean-setting-with-tenant/by-code/{code}?tenant="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseBoolean result = apiInstance.getBooleanSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getBooleanSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseBoolean result = apiInstance.getBooleanSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getBooleanSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 
String *tenant = tenant_example; //  (optional)

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets boolean setting by code and tenant
[apiInstance getBooleanSettingByCodeAndTenantWith:code
    tenant:tenant
              completionHandler: ^(HvlResponseBoolean output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 
var opts = { 
  'tenant': tenant_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBooleanSettingByCodeAndTenant(code, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getBooleanSettingByCodeAndTenantExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 
            var tenant = tenant_example;  // String |  (optional) 

            try
            {
                // Gets boolean setting by code and tenant
                HvlResponseBoolean result = apiInstance.getBooleanSettingByCodeAndTenant(code, tenant);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getBooleanSettingByCodeAndTenant: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 
$tenant = tenant_example; // String | 

try {
    $result = $api_instance->getBooleanSettingByCodeAndTenant($code, $tenant);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getBooleanSettingByCodeAndTenant: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 
my $tenant = tenant_example; # String | 

eval { 
    my $result = $api_instance->getBooleanSettingByCodeAndTenant(code => $code, tenant => $tenant);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getBooleanSettingByCodeAndTenant: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 
tenant = tenant_example # String |  (optional)

try: 
    # Gets boolean setting by code and tenant
    api_response = api_instance.get_boolean_setting_by_code_and_tenant(code, tenant=tenant)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getBooleanSettingByCodeAndTenant: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required
Query parameters
Name Description
tenant
String

Responses

Status: 200 - OK


getNumberSettingByCode

Gets numeric setting by code


/settings/number-setting/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/number-setting/by-code/{code}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseLong result = apiInstance.getNumberSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getNumberSettingByCode");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseLong result = apiInstance.getNumberSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getNumberSettingByCode");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets numeric setting by code
[apiInstance getNumberSettingByCodeWith:code
              completionHandler: ^(HvlResponseLong output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getNumberSettingByCode(code, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getNumberSettingByCodeExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 

            try
            {
                // Gets numeric setting by code
                HvlResponseLong result = apiInstance.getNumberSettingByCode(code);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getNumberSettingByCode: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 

try {
    $result = $api_instance->getNumberSettingByCode($code);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getNumberSettingByCode: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 

eval { 
    my $result = $api_instance->getNumberSettingByCode(code => $code);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getNumberSettingByCode: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 

try: 
    # Gets numeric setting by code
    api_response = api_instance.get_number_setting_by_code(code)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getNumberSettingByCode: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required

Responses

Status: 200 - OK


getNumberSettingByCodeAndTenant

Gets numeric setting by code and tenant


/settings/number-setting-with-tenant/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/number-setting-with-tenant/by-code/{code}?tenant="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseLong result = apiInstance.getNumberSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getNumberSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseLong result = apiInstance.getNumberSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getNumberSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 
String *tenant = tenant_example; //  (optional)

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets numeric setting by code and tenant
[apiInstance getNumberSettingByCodeAndTenantWith:code
    tenant:tenant
              completionHandler: ^(HvlResponseLong output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 
var opts = { 
  'tenant': tenant_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getNumberSettingByCodeAndTenant(code, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getNumberSettingByCodeAndTenantExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 
            var tenant = tenant_example;  // String |  (optional) 

            try
            {
                // Gets numeric setting by code and tenant
                HvlResponseLong result = apiInstance.getNumberSettingByCodeAndTenant(code, tenant);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getNumberSettingByCodeAndTenant: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 
$tenant = tenant_example; // String | 

try {
    $result = $api_instance->getNumberSettingByCodeAndTenant($code, $tenant);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getNumberSettingByCodeAndTenant: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 
my $tenant = tenant_example; # String | 

eval { 
    my $result = $api_instance->getNumberSettingByCodeAndTenant(code => $code, tenant => $tenant);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getNumberSettingByCodeAndTenant: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 
tenant = tenant_example # String |  (optional)

try: 
    # Gets numeric setting by code and tenant
    api_response = api_instance.get_number_setting_by_code_and_tenant(code, tenant=tenant)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getNumberSettingByCodeAndTenant: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required
Query parameters
Name Description
tenant
String

Responses

Status: 200 - OK


getSettingListByModuleName

Gets setting list by module name


/settings/list/by-module-name/{moduleName}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/list/by-module-name/{moduleName}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String moduleName = moduleName_example; // String | 
        try {
            array[HvlSettingModel] result = apiInstance.getSettingListByModuleName(moduleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getSettingListByModuleName");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String moduleName = moduleName_example; // String | 
        try {
            array[HvlSettingModel] result = apiInstance.getSettingListByModuleName(moduleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getSettingListByModuleName");
            e.printStackTrace();
        }
    }
}
String *moduleName = moduleName_example; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets setting list by module name
[apiInstance getSettingListByModuleNameWith:moduleName
              completionHandler: ^(array[HvlSettingModel] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var moduleName = moduleName_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getSettingListByModuleName(moduleName, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getSettingListByModuleNameExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var moduleName = moduleName_example;  // String | 

            try
            {
                // Gets setting list by module name
                array[HvlSettingModel] result = apiInstance.getSettingListByModuleName(moduleName);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getSettingListByModuleName: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$moduleName = moduleName_example; // String | 

try {
    $result = $api_instance->getSettingListByModuleName($moduleName);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getSettingListByModuleName: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $moduleName = moduleName_example; # String | 

eval { 
    my $result = $api_instance->getSettingListByModuleName(moduleName => $moduleName);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getSettingListByModuleName: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
moduleName = moduleName_example # String | 

try: 
    # Gets setting list by module name
    api_response = api_instance.get_setting_list_by_module_name(moduleName)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getSettingListByModuleName: %s\n" % e)

Parameters

Path parameters
Name Description
moduleName*
String
Required

Responses

Status: 200 - OK


getSettingListByTypeId

Gets setting list by type id


/settings/list/by-type-id/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/list/by-type-id/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        Long id = 789; // Long | 
        try {
            HvlResponseListHvlSettingModel result = apiInstance.getSettingListByTypeId(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getSettingListByTypeId");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        Long id = 789; // Long | 
        try {
            HvlResponseListHvlSettingModel result = apiInstance.getSettingListByTypeId(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getSettingListByTypeId");
            e.printStackTrace();
        }
    }
}
Long *id = 789; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets setting list by type id
[apiInstance getSettingListByTypeIdWith:id
              completionHandler: ^(HvlResponseListHvlSettingModel output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var id = 789; // {{Long}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getSettingListByTypeId(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getSettingListByTypeIdExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var id = 789;  // Long | 

            try
            {
                // Gets setting list by type id
                HvlResponseListHvlSettingModel result = apiInstance.getSettingListByTypeId(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getSettingListByTypeId: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$id = 789; // Long | 

try {
    $result = $api_instance->getSettingListByTypeId($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getSettingListByTypeId: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $id = 789; # Long | 

eval { 
    my $result = $api_instance->getSettingListByTypeId(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getSettingListByTypeId: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
id = 789 # Long | 

try: 
    # Gets setting list by type id
    api_response = api_instance.get_setting_list_by_type_id(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getSettingListByTypeId: %s\n" % e)

Parameters

Path parameters
Name Description
id*
Long (int64)
Required

Responses

Status: 200 - OK


getStringSettingByCode

Gets string setting by code


/settings/string-setting/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/string-setting/by-code/{code}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseString result = apiInstance.getStringSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getStringSettingByCode");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        try {
            HvlResponseString result = apiInstance.getStringSettingByCode(code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getStringSettingByCode");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets string setting by code
[apiInstance getStringSettingByCodeWith:code
              completionHandler: ^(HvlResponseString output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getStringSettingByCode(code, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getStringSettingByCodeExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 

            try
            {
                // Gets string setting by code
                HvlResponseString result = apiInstance.getStringSettingByCode(code);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getStringSettingByCode: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 

try {
    $result = $api_instance->getStringSettingByCode($code);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getStringSettingByCode: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 

eval { 
    my $result = $api_instance->getStringSettingByCode(code => $code);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getStringSettingByCode: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 

try: 
    # Gets string setting by code
    api_response = api_instance.get_string_setting_by_code(code)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getStringSettingByCode: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required

Responses

Status: 200 - OK


getStringSettingByCodeAndTenant

Gets string setting by code and tenant


/settings/string-setting-with-tenant/by-code/{code}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/settings/string-setting-with-tenant/by-code/{code}?tenant="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseString result = apiInstance.getStringSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getStringSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        String code = code_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseString result = apiInstance.getStringSettingByCodeAndTenant(code, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#getStringSettingByCodeAndTenant");
            e.printStackTrace();
        }
    }
}
String *code = code_example; // 
String *tenant = tenant_example; //  (optional)

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Gets string setting by code and tenant
[apiInstance getStringSettingByCodeAndTenantWith:code
    tenant:tenant
              completionHandler: ^(HvlResponseString output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var code = code_example; // {{String}} 
var opts = { 
  'tenant': tenant_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getStringSettingByCodeAndTenant(code, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getStringSettingByCodeAndTenantExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var code = code_example;  // String | 
            var tenant = tenant_example;  // String |  (optional) 

            try
            {
                // Gets string setting by code and tenant
                HvlResponseString result = apiInstance.getStringSettingByCodeAndTenant(code, tenant);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.getStringSettingByCodeAndTenant: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$code = code_example; // String | 
$tenant = tenant_example; // String | 

try {
    $result = $api_instance->getStringSettingByCodeAndTenant($code, $tenant);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->getStringSettingByCodeAndTenant: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $code = code_example; # String | 
my $tenant = tenant_example; # String | 

eval { 
    my $result = $api_instance->getStringSettingByCodeAndTenant(code => $code, tenant => $tenant);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->getStringSettingByCodeAndTenant: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
code = code_example # String | 
tenant = tenant_example # String |  (optional)

try: 
    # Gets string setting by code and tenant
    api_response = api_instance.get_string_setting_by_code_and_tenant(code, tenant=tenant)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->getStringSettingByCodeAndTenant: %s\n" % e)

Parameters

Path parameters
Name Description
code*
String
Required
Query parameters
Name Description
tenant
String

Responses

Status: 200 - OK


update

Updates setting


/settings

Usage and SDK Samples

curl -X PUT\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"http://keysys.hvlnet.net:9192/settings"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        HvlSettingModel body = ; // HvlSettingModel | 
        try {
            HvlResponseHvlSettingModel result = apiInstance.update(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#update");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingAPIApi;

public class SystemSettingAPIApiExample {

    public static void main(String[] args) {
        SystemSettingAPIApi apiInstance = new SystemSettingAPIApi();
        HvlSettingModel body = ; // HvlSettingModel | 
        try {
            HvlResponseHvlSettingModel result = apiInstance.update(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingAPIApi#update");
            e.printStackTrace();
        }
    }
}
HvlSettingModel *body = ; // 

SystemSettingAPIApi *apiInstance = [[SystemSettingAPIApi alloc] init];

// Updates setting
[apiInstance updateWith:body
              completionHandler: ^(HvlResponseHvlSettingModel output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingAPIApi()
var body = ; // {{HvlSettingModel}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.update(body, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class updateExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingAPIApi();
            var body = new HvlSettingModel(); // HvlSettingModel | 

            try
            {
                // Updates setting
                HvlResponseHvlSettingModel result = apiInstance.update(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingAPIApi.update: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingAPIApi();
$body = ; // HvlSettingModel | 

try {
    $result = $api_instance->update($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingAPIApi->update: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingAPIApi->new();
my $body = WWW::SwaggerClient::Object::HvlSettingModel->new(); # HvlSettingModel | 

eval { 
    my $result = $api_instance->update(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingAPIApi->update: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingAPIApi()
body =  # HvlSettingModel | 

try: 
    # Updates setting
    api_response = api_instance.update(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingAPIApi->update: %s\n" % e)

Parameters

Body parameters
Name Description
body *

Responses

Status: 200 - OK


SystemSettingTypeAPI

queryListByModuleName

Gets types by module name


/setting-types/types/by-module-name/{moduleName}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/setting-types/types/by-module-name/{moduleName}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingTypeAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingTypeAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingTypeAPIApi apiInstance = new SystemSettingTypeAPIApi();
        String moduleName = moduleName_example; // String | 
        try {
            HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleName(moduleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingTypeAPIApi#queryListByModuleName");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingTypeAPIApi;

public class SystemSettingTypeAPIApiExample {

    public static void main(String[] args) {
        SystemSettingTypeAPIApi apiInstance = new SystemSettingTypeAPIApi();
        String moduleName = moduleName_example; // String | 
        try {
            HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleName(moduleName);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingTypeAPIApi#queryListByModuleName");
            e.printStackTrace();
        }
    }
}
String *moduleName = moduleName_example; // 

SystemSettingTypeAPIApi *apiInstance = [[SystemSettingTypeAPIApi alloc] init];

// Gets types by module name
[apiInstance queryListByModuleNameWith:moduleName
              completionHandler: ^(HvlResponseListHvlSettingTypeModel output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingTypeAPIApi()
var moduleName = moduleName_example; // {{String}} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.queryListByModuleName(moduleName, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class queryListByModuleNameExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingTypeAPIApi();
            var moduleName = moduleName_example;  // String | 

            try
            {
                // Gets types by module name
                HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleName(moduleName);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingTypeAPIApi.queryListByModuleName: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingTypeAPIApi();
$moduleName = moduleName_example; // String | 

try {
    $result = $api_instance->queryListByModuleName($moduleName);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingTypeAPIApi->queryListByModuleName: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingTypeAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingTypeAPIApi->new();
my $moduleName = moduleName_example; # String | 

eval { 
    my $result = $api_instance->queryListByModuleName(moduleName => $moduleName);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingTypeAPIApi->queryListByModuleName: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingTypeAPIApi()
moduleName = moduleName_example # String | 

try: 
    # Gets types by module name
    api_response = api_instance.query_list_by_module_name(moduleName)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingTypeAPIApi->queryListByModuleName: %s\n" % e)

Parameters

Path parameters
Name Description
moduleName*
String
Required

Responses

Status: 200 - OK


queryListByModuleNameAndTenant

Gets types by module name


/setting-types/types/by-module-name-and-tenant/{moduleName}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"http://keysys.hvlnet.net:9192/setting-types/types/by-module-name-and-tenant/{moduleName}?tenant="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SystemSettingTypeAPIApi;

import java.io.File;
import java.util.*;

public class SystemSettingTypeAPIApiExample {

    public static void main(String[] args) {
        
        SystemSettingTypeAPIApi apiInstance = new SystemSettingTypeAPIApi();
        String moduleName = moduleName_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleNameAndTenant(moduleName, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingTypeAPIApi#queryListByModuleNameAndTenant");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.SystemSettingTypeAPIApi;

public class SystemSettingTypeAPIApiExample {

    public static void main(String[] args) {
        SystemSettingTypeAPIApi apiInstance = new SystemSettingTypeAPIApi();
        String moduleName = moduleName_example; // String | 
        String tenant = tenant_example; // String | 
        try {
            HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleNameAndTenant(moduleName, tenant);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling SystemSettingTypeAPIApi#queryListByModuleNameAndTenant");
            e.printStackTrace();
        }
    }
}
String *moduleName = moduleName_example; // 
String *tenant = tenant_example; //  (optional)

SystemSettingTypeAPIApi *apiInstance = [[SystemSettingTypeAPIApi alloc] init];

// Gets types by module name
[apiInstance queryListByModuleNameAndTenantWith:moduleName
    tenant:tenant
              completionHandler: ^(HvlResponseListHvlSettingTypeModel output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HvlSystemSettingServer = require('hvl_system_setting_server');

var api = new HvlSystemSettingServer.SystemSettingTypeAPIApi()
var moduleName = moduleName_example; // {{String}} 
var opts = { 
  'tenant': tenant_example // {{String}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.queryListByModuleNameAndTenant(moduleName, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class queryListByModuleNameAndTenantExample
    {
        public void main()
        {

            var apiInstance = new SystemSettingTypeAPIApi();
            var moduleName = moduleName_example;  // String | 
            var tenant = tenant_example;  // String |  (optional) 

            try
            {
                // Gets types by module name
                HvlResponseListHvlSettingTypeModel result = apiInstance.queryListByModuleNameAndTenant(moduleName, tenant);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SystemSettingTypeAPIApi.queryListByModuleNameAndTenant: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiSystemSettingTypeAPIApi();
$moduleName = moduleName_example; // String | 
$tenant = tenant_example; // String | 

try {
    $result = $api_instance->queryListByModuleNameAndTenant($moduleName, $tenant);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SystemSettingTypeAPIApi->queryListByModuleNameAndTenant: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SystemSettingTypeAPIApi;

my $api_instance = WWW::SwaggerClient::SystemSettingTypeAPIApi->new();
my $moduleName = moduleName_example; # String | 
my $tenant = tenant_example; # String | 

eval { 
    my $result = $api_instance->queryListByModuleNameAndTenant(moduleName => $moduleName, tenant => $tenant);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SystemSettingTypeAPIApi->queryListByModuleNameAndTenant: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.SystemSettingTypeAPIApi()
moduleName = moduleName_example # String | 
tenant = tenant_example # String |  (optional)

try: 
    # Gets types by module name
    api_response = api_instance.query_list_by_module_name_and_tenant(moduleName, tenant=tenant)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SystemSettingTypeAPIApi->queryListByModuleNameAndTenant: %s\n" % e)

Parameters

Path parameters
Name Description
moduleName*
String
Required
Query parameters
Name Description
tenant
String

Responses

Status: 200 - OK