import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { BusinessSolutionQuotation, BusinessSolutionQuotationType } from './BusinessSolutionQuotation'; /** * This class represents the entity "A_BusSolutionQuotationText" of service "API_BUS_SOLUTION_QUOTATION_SRV". */ export declare class BusSolutionQuotationText extends Entity implements BusSolutionQuotationTextType { /** * Technical entity name for BusSolutionQuotationText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the BusSolutionQuotationText entity */ static _keys: string[]; /** * Transaction ID. * Maximum length: 10. */ businessSolutionQuotation: 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 BusSolutionQuotationTextType { businessSolutionQuotation: DeserializedType; language: DeserializedType; textObjectType: DeserializedType; plainLongText?: DeserializedType | null; toBusinessSolutionQuotation?: BusinessSolutionQuotationType | null; } //# sourceMappingURL=BusSolutionQuotationText.d.ts.map