// ./types/sap.d.ts (generated)
export interface A_BusinessPartner {
BusinessPartner: string;
Customer?: string;
Supplier?: string;
AcademicTitle?: string;
AuthorizationGroup?: string;
BusinessPartnerCategory?: string;
BusinessPartnerFullName?: string;
// ... all fields with correct types
}
export interface A_BusinessPartnerAddress {
BusinessPartner: string;
AddressID: string;
CityName?: string;
Country?: string;
// ...
}
// Navigation properties
export interface A_BusinessPartner_Navigations {
to_BusinessPartnerAddress: A_BusinessPartnerAddress[];
to_BusinessPartnerBank: A_BusinessPartnerBank[];
// ...
}