import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductSalesText" of service "API_PRODUCT_SRV". */ export declare class ProductSalesText extends Entity implements ProductSalesTextType { /** * Technical entity name for ProductSalesText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductSalesText entity */ static _keys: string[]; /** * Product Number. * Alphanumeric key uniquely identifying the product. * Maximum length: 40. */ product: DeserializedType; /** * Sales Organization. * An organizational unit responsible for the sale of certain products or services. The responsibility of a sales organization may include legal liability for products and customer claims. * You can assign any number of distribution channels and divisions to a sales organization. A particular combination of sales organization, distribution channel, and division is known as a sales area. * Maximum length: 4. */ productSalesOrg: DeserializedType; /** * Distribution Channel. * The way in which products or services reach the customer. Typical examples of distribution channels are wholesale, retail, or direct sales. * You can maintain information about customers and products by sales organization and distribution channel. Within a sales organization you can deliver goods to a given customer through more than one distribution channel.You can assign a distribution channel to one or more sales organizations. If, for example, you have numerous sales organizations, each sales organization may use the "Wholesale" distribution channel.For each combination of sales organization and distribution channel, you can further assign one or more of the divisions that are defined for the sales organization. You can, for example, assign "Food" and "Non-food" divisions to the "Wholesale" distribution channel. A particular combination of sales organization, distribution channel, and division is known as a sales area. * Maximum length: 2. */ productDistributionChnl: DeserializedType; /** * Language Key. * The language key indicates * - the language in which texts are displayed,- the language in which you enter texts,- the language in which the system prints texts. * Maximum length: 2. */ language: DeserializedType; /** * String. * @nullable */ longText?: DeserializedType | null; } export interface ProductSalesTextType { product: DeserializedType; productSalesOrg: DeserializedType; productDistributionChnl: DeserializedType; language: DeserializedType; longText?: DeserializedType | null; } //# sourceMappingURL=ProductSalesText.d.ts.map