import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { BusinessSolutionQuotation, BusinessSolutionQuotationType } from './BusinessSolutionQuotation'; /** * This class represents the entity "A_BusSolnQtanItemText" of service "API_BUS_SOLUTION_QUOTATION_SRV". */ export declare class BusSolnQtanItemText extends Entity implements BusSolnQtanItemTextType { /** * Technical entity name for BusSolnQtanItemText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the BusSolnQtanItemText entity */ static _keys: string[]; /** * Transaction ID. * Maximum length: 10. */ businessSolutionQuotation: DeserializedType; /** * Shortened Item Number in Document. * Maximum length: 6. */ busSolutionQuotationItem: DeserializedType; /** * Language Key. * Maximum length: 2. */ language: DeserializedType; /** * Text ID. * Maximum length: 4. */ textObjectType: DeserializedType; /** * Plain Long Text. * Maximum length: 150. * @nullable */ plainLongText?: DeserializedType | null; /** * One-to-one navigation property to the [[BusinessSolutionQuotation]] entity. */ toBusinessSolutionQuotation?: BusinessSolutionQuotation | null; } export interface BusSolnQtanItemTextType { businessSolutionQuotation: DeserializedType; busSolutionQuotationItem: DeserializedType; language: DeserializedType; textObjectType: DeserializedType; plainLongText?: DeserializedType | null; toBusinessSolutionQuotation?: BusinessSolutionQuotationType | null; } //# sourceMappingURL=BusSolnQtanItemText.d.ts.map