import { SalesQuoteReferenceObjectRequestBuilder } from './SalesQuoteReferenceObjectRequestBuilder'; import { Moment } from 'moment'; import { AllFields, BooleanField, CustomFieldV2, DateField, EntityBuilderType, EntityV2, Field, OneToOneLink, StringField } from '@sap-cloud-sdk/core'; /** * This class represents the entity "SalesQuoteReferenceObjectCollection" of service "c4codata". */ export declare class SalesQuoteReferenceObject extends EntityV2 implements SalesQuoteReferenceObjectType { /** * Technical entity name for SalesQuoteReferenceObject. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * Object Id. * Maximum length: 70. */ objectId: string; /** * Parent Object Id. * Maximum length: 70. * @nullable */ parentObjectId?: string; /** * E Tag. * @nullable */ eTag?: Moment; /** * Quote Id. * Maximum length: 35. * @nullable */ quoteId?: string; /** * Main Indicator. * @nullable */ mainIndicator?: boolean; /** * Installation Point Id. * Maximum length: 40. * @nullable */ installationPointId?: string; /** * Installed Base Id. * Maximum length: 40. * @nullable */ installedBaseId?: string; /** * Product Internal Id. * Maximum length: 40. * @nullable */ productInternalId?: string; /** * Product Serial Id. * Maximum length: 30. * @nullable */ productSerialId?: string; /** * One-to-one navigation property to the [[SalesQuote]] entity. */ salesQuote?: SalesQuote | null; /** * Returns an entity builder to construct instances of `SalesQuoteReferenceObject`. * @returns A builder that constructs instances of entity type `SalesQuoteReferenceObject`. */ static builder(): EntityBuilderType; /** * Returns a request builder to construct requests for operations on the `SalesQuoteReferenceObject` entity type. * @returns A `SalesQuoteReferenceObject` request builder. */ static requestBuilder(): SalesQuoteReferenceObjectRequestBuilder; /** * Returns a selectable object that allows the selection of custom field in a get request for the entity `SalesQuoteReferenceObject`. * @param fieldName Name of the custom field to select * @returns A builder that constructs instances of entity type `SalesQuoteReferenceObject`. */ static customField(fieldName: string): CustomFieldV2; /** * Overwrites the default toJSON method so that all instance variables as well as all custom fields of the entity are returned. * @returns An object containing all instance variables + custom fields. */ toJSON(): { [key: string]: any; }; } import { SalesQuote, SalesQuoteType } from './SalesQuote'; export interface SalesQuoteReferenceObjectType { objectId: string; parentObjectId?: string | null; eTag?: Moment | null; quoteId?: string | null; mainIndicator?: boolean | null; installationPointId?: string | null; installedBaseId?: string | null; productInternalId?: string | null; productSerialId?: string | null; salesQuote?: SalesQuoteType | null; } export declare namespace SalesQuoteReferenceObject { /** * Static representation of the [[objectId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const OBJECT_ID: StringField; /** * Static representation of the [[parentObjectId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const PARENT_OBJECT_ID: StringField; /** * Static representation of the [[eTag]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const E_TAG: DateField; /** * Static representation of the [[quoteId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const QUOTE_ID: StringField; /** * Static representation of the [[mainIndicator]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const MAIN_INDICATOR: BooleanField; /** * Static representation of the [[installationPointId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const INSTALLATION_POINT_ID: StringField; /** * Static representation of the [[installedBaseId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const INSTALLED_BASE_ID: StringField; /** * Static representation of the [[productInternalId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const PRODUCT_INTERNAL_ID: StringField; /** * Static representation of the [[productSerialId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const PRODUCT_SERIAL_ID: StringField; /** * Static representation of the one-to-one navigation property [[salesQuote]] for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const SALES_QUOTE: OneToOneLink; /** * All fields of the SalesQuoteReferenceObject entity. */ const _allFields: Array | DateField | BooleanField | OneToOneLink>; /** * All fields selector. */ const ALL_FIELDS: AllFields; /** * All key fields of the SalesQuoteReferenceObject entity. */ const _keyFields: Array>; /** * Mapping of all key field names to the respective static field property SalesQuoteReferenceObject. */ const _keys: { [keys: string]: Field; }; } //# sourceMappingURL=SalesQuoteReferenceObject.d.ts.map