import { SalesQuoteItemScheduleLineRequestBuilder } from './SalesQuoteItemScheduleLineRequestBuilder'; import { Moment } from 'moment'; import { BigNumber } from 'bignumber.js'; import { AllFields, BigNumberField, CustomFieldV2, DateField, EntityBuilderType, EntityV2, Field, OneToOneLink, StringField } from '@sap-cloud-sdk/core'; /** * This class represents the entity "SalesQuoteItemScheduleLineCollection" of service "c4codata". */ export declare class SalesQuoteItemScheduleLine extends EntityV2 implements SalesQuoteItemScheduleLineType { /** * Technical entity name for SalesQuoteItemScheduleLine. */ 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; /** * Quote Id. * Maximum length: 35. * @nullable */ quoteId?: string; /** * Quote Item Id. * Maximum length: 10. * @nullable */ quoteItemId?: string; /** * Id. * Maximum length: 4. * @nullable */ id?: string; /** * Type Code. * Maximum length: 2. * @nullable */ typeCode?: string; /** * Type Code Text. * @nullable */ typeCodeText?: string; /** * Quantity. * @nullable */ quantity?: BigNumber; /** * Unit Code. * Maximum length: 3. * @nullable */ unitCode?: string; /** * Unit Code Text. * @nullable */ unitCodeText?: string; /** * Start Date Time. * @nullable */ startDateTime?: Moment; /** * End Date Time. * @nullable */ endDateTime?: Moment; /** * Time Zone Code. * Maximum length: 10. * @nullable */ timeZoneCode?: string; /** * Time Zone Code Text. * @nullable */ timeZoneCodeText?: string; /** * E Tag. * @nullable */ eTag?: Moment; /** * One-to-one navigation property to the [[SalesQuote]] entity. */ salesQuote?: SalesQuote | null; /** * One-to-one navigation property to the [[SalesQuoteItem]] entity. */ salesQuoteItem?: SalesQuoteItem | null; /** * Returns an entity builder to construct instances of `SalesQuoteItemScheduleLine`. * @returns A builder that constructs instances of entity type `SalesQuoteItemScheduleLine`. */ static builder(): EntityBuilderType; /** * Returns a request builder to construct requests for operations on the `SalesQuoteItemScheduleLine` entity type. * @returns A `SalesQuoteItemScheduleLine` request builder. */ static requestBuilder(): SalesQuoteItemScheduleLineRequestBuilder; /** * Returns a selectable object that allows the selection of custom field in a get request for the entity `SalesQuoteItemScheduleLine`. * @param fieldName Name of the custom field to select * @returns A builder that constructs instances of entity type `SalesQuoteItemScheduleLine`. */ 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'; import { SalesQuoteItem, SalesQuoteItemType } from './SalesQuoteItem'; export interface SalesQuoteItemScheduleLineType { objectId: string; parentObjectId?: string | null; quoteId?: string | null; quoteItemId?: string | null; id?: string | null; typeCode?: string | null; typeCodeText?: string | null; quantity?: BigNumber | null; unitCode?: string | null; unitCodeText?: string | null; startDateTime?: Moment | null; endDateTime?: Moment | null; timeZoneCode?: string | null; timeZoneCodeText?: string | null; eTag?: Moment | null; salesQuote?: SalesQuoteType | null; salesQuoteItem?: SalesQuoteItemType | null; } export declare namespace SalesQuoteItemScheduleLine { /** * 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 [[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 [[quoteItemId]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const QUOTE_ITEM_ID: StringField; /** * Static representation of the [[id]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const ID: StringField; /** * Static representation of the [[typeCode]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const TYPE_CODE: StringField; /** * Static representation of the [[typeCodeText]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const TYPE_CODE_TEXT: StringField; /** * Static representation of the [[quantity]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const QUANTITY: BigNumberField; /** * Static representation of the [[unitCode]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const UNIT_CODE: StringField; /** * Static representation of the [[unitCodeText]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const UNIT_CODE_TEXT: StringField; /** * Static representation of the [[startDateTime]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const START_DATE_TIME: DateField; /** * Static representation of the [[endDateTime]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const END_DATE_TIME: DateField; /** * Static representation of the [[timeZoneCode]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const TIME_ZONE_CODE: StringField; /** * Static representation of the [[timeZoneCodeText]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const TIME_ZONE_CODE_TEXT: 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 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; /** * Static representation of the one-to-one navigation property [[salesQuoteItem]] for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const SALES_QUOTE_ITEM: OneToOneLink; /** * All fields of the SalesQuoteItemScheduleLine entity. */ const _allFields: Array | BigNumberField | DateField | OneToOneLink | OneToOneLink>; /** * All fields selector. */ const ALL_FIELDS: AllFields; /** * All key fields of the SalesQuoteItemScheduleLine entity. */ const _keyFields: Array>; /** * Mapping of all key field names to the respective static field property SalesQuoteItemScheduleLine. */ const _keys: { [keys: string]: Field; }; } //# sourceMappingURL=SalesQuoteItemScheduleLine.d.ts.map