import { ProviderDestination, ResponseDestination } from "../../interfaces/destinationInterface"; export interface ProviderDestinationBas extends ProviderDestination { abapEnabled?: string; usage?: string; additionalData?: string; sapClient?: string; productName?: string; apiKey?: string; applicationID?: string; apiBusinessHubEnterpriseURL?: string; html5DynamicDestination?: string; } export interface ResponseDestinationBas extends ResponseDestination { WebIDEEnabled?: string; "HTML5.DynamicDestination"?: string; "sap-client"?: string; WebIDEUsage?: string; WebIDEAdditionalData?: string; "product.name"?: string; User?: string; Password?: string; "URL.headers.ApiKey"?: string; applicationID?: string; apiBusinessHubEnterpriseURL?: string; abap_enabled?: string; }