import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { ServiceQuotation, ServiceQuotationType } from './ServiceQuotation'; /** * This class represents the entity "A_ServiceQtanItemRefObject" of service "API_SERVICE_QUOTATION_SRV". */ export declare class ServiceQtanItemRefObject extends Entity implements ServiceQtanItemRefObjectType { /** * Technical entity name for ServiceQtanItemRefObject. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ServiceQtanItemRefObject entity */ static _keys: string[]; /** * Transaction ID. * Number that identifies the transaction document. It is unique for each business transaction category. * Maximum length: 10. */ serviceQuotation: DeserializedType; /** * Shortened Item Number in Document. * Maximum length: 6. */ serviceQuotationItem: DeserializedType; /** * Equipment Number. * Number by which a piece of equipment can be clearly identified. * Maximum length: 18. */ serviceReferenceEquipment: DeserializedType; /** * Functional Location. * Label that uniquely identifies a functional location. * If alternative labels exist for a functional location, you can define in your user profile which label should be displayed in this field. * Maximum length: 40. */ serviceRefFunctionalLocation: DeserializedType; /** * Main Reference Object. * @nullable */ srvcRefObjIsMainObject?: DeserializedType | null; /** * One-to-one navigation property to the [[ServiceQuotation]] entity. */ toServiceQuotation?: ServiceQuotation | null; } export interface ServiceQtanItemRefObjectType { serviceQuotation: DeserializedType; serviceQuotationItem: DeserializedType; serviceReferenceEquipment: DeserializedType; serviceRefFunctionalLocation: DeserializedType; srvcRefObjIsMainObject?: DeserializedType | null; toServiceQuotation?: ServiceQuotationType | null; } //# sourceMappingURL=ServiceQtanItemRefObject.d.ts.map