class Configuration { readonly apiKey: string; readonly baseUrl: string; constructor(apiKey: string, baseUrl: string) { this.apiKey = apiKey; this.baseUrl = baseUrl; } getApiKey(): string { return this.apiKey; } getBaseUrl(): string { return this.baseUrl; } }