You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
931 B
34 lines
931 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
flowroutenumbersandmessaging.configuration
|
||
|
|
||
|
This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
|
||
|
"""
|
||
|
from .api_helper import APIHelper
|
||
|
|
||
|
class Configuration(object):
|
||
|
|
||
|
"""A class used for configuring the SDK by a user.
|
||
|
|
||
|
This class need not be instantiated and all properties and methods
|
||
|
are accessible without instance creation.
|
||
|
|
||
|
"""
|
||
|
|
||
|
# Set the array parameter serialization method
|
||
|
# (allowed: indexed, unindexed, plain, csv, tsv, psv)
|
||
|
array_serialization = "indexed"
|
||
|
|
||
|
# The base Uri for API calls
|
||
|
base_uri = 'https://api.flowroute.com'
|
||
|
|
||
|
# The username to use with basic authentication
|
||
|
# TODO: Set an appropriate value
|
||
|
basic_auth_user_name = "TODO: Replace"
|
||
|
|
||
|
# The password to use with basic authentication
|
||
|
# TODO: Set an appropriate value
|
||
|
basic_auth_password = "TODO: Replace"
|
||
|
|