using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; namespace {{packageName}}.Client { /// /// Represents a set of configuration settings /// public class Configuration{ /// /// Version of the package /// public const string Version = "{{packageVersion}}"; /// /// Gets or sets the API client. This is the default API client for making HTTP calls. /// /// The API client. public static ApiClient apiClient = new ApiClient(); /// /// Gets or sets the username (HTTP basic authentication) /// /// The username. public static String username { get; set; } /// /// Gets or sets the password (HTTP basic authentication) /// /// The password. public static String password { get; set; } /// /// Gets or sets the API key based on the authentication name /// /// The API key. public static Dictionary apiKey = new Dictionary(); /// /// Gets or sets the prefix (e.g. Token) of the API key based on the authentication name /// /// The prefix of the API key. public static Dictionary apiKeyPrefix = new Dictionary(); } }