import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_BuPaAddressUsage" of service "API_BUSINESS_PARTNER". */ export declare class BuPaAddressUsage extends Entity implements BuPaAddressUsageType { /** * Technical entity name for BuPaAddressUsage. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the BuPaAddressUsage entity */ static _keys: string[]; /** * Business Partner Number. * Key identifying a business partner in the SAP system. The key is unique within a client. * Maximum length: 10. */ businessPartner: DeserializedType; /** * Validity End of a Business Partner Address Usage. */ validityEndDate: DeserializedType; /** * Address Type. * Business partner attribute, which you can use to distinguish between various addresses by defining the address usage for communication with business partners. * Maintain the usage types for addresses (address types) in Customizing.You can create a short description and a name for the address type.When maintaining business partners you can use the function address usage to assign business partner addresses to address types.If necessary, you can set the indicator for multiple use in Customizing.Correspondence addressDelivery address. * Maximum length: 10. */ addressUsage: DeserializedType; /** * Address Number. * Internal key for identifying a Business Address Services address. * For more information about the meaning and use of the address number and the Business Address Services concepts, see the function group SZA0 documentation. * Maximum length: 10. */ addressId: DeserializedType; /** * Validity Start of a Business Partner Address Usage. * @nullable */ validityStartDate?: DeserializedType | null; /** * Indicator: Standard Address Usage. * Establishes which is the standard address for an address usage. * Several addresses per period can be assigned to an address usage.If this is the case, then this indicator controls which of the assigned addresses should be the standard address of the relevant usage. This is determined automatically when the address usage is accessed. * @nullable */ standardUsage?: DeserializedType | null; /** * Authorization Group. * You can use authorization groups to stipulate which business partners a user is allowed to process. * Use the following authorization object:'Business partners: authorization groups' (B_BUPA_GRP).The system only checks this authorization if you made an entry in the "Authorization group" field for the business partner. Otherwise, any user may process the business partner. * Maximum length: 4. * @nullable */ authorizationGroup?: DeserializedType | null; } export interface BuPaAddressUsageType { businessPartner: DeserializedType; validityEndDate: DeserializedType; addressUsage: DeserializedType; addressId: DeserializedType; validityStartDate?: DeserializedType | null; standardUsage?: DeserializedType | null; authorizationGroup?: DeserializedType | null; } //# sourceMappingURL=BuPaAddressUsage.d.ts.map