import { SalesQuoteExternalPriceInactivityReasonCodeRequestBuilder } from './SalesQuoteExternalPriceInactivityReasonCodeRequestBuilder'; import { AllFields, CustomFieldV2, EntityBuilderType, EntityV2, Field, StringField } from '@sap-cloud-sdk/core'; /** * This class represents the entity "SalesQuoteExternalPriceInactivityReasonCodeCollection" of service "c4codata". */ export declare class SalesQuoteExternalPriceInactivityReasonCode extends EntityV2 implements SalesQuoteExternalPriceInactivityReasonCodeType { /** * Technical entity name for SalesQuoteExternalPriceInactivityReasonCode. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * Code. */ code: string; /** * Description. */ description: string; /** * Returns an entity builder to construct instances of `SalesQuoteExternalPriceInactivityReasonCode`. * @returns A builder that constructs instances of entity type `SalesQuoteExternalPriceInactivityReasonCode`. */ static builder(): EntityBuilderType; /** * Returns a request builder to construct requests for operations on the `SalesQuoteExternalPriceInactivityReasonCode` entity type. * @returns A `SalesQuoteExternalPriceInactivityReasonCode` request builder. */ static requestBuilder(): SalesQuoteExternalPriceInactivityReasonCodeRequestBuilder; /** * Returns a selectable object that allows the selection of custom field in a get request for the entity `SalesQuoteExternalPriceInactivityReasonCode`. * @param fieldName Name of the custom field to select * @returns A builder that constructs instances of entity type `SalesQuoteExternalPriceInactivityReasonCode`. */ 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; }; } export interface SalesQuoteExternalPriceInactivityReasonCodeType { code: string; description: string; } export declare namespace SalesQuoteExternalPriceInactivityReasonCode { /** * Static representation of the [[code]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const CODE: StringField; /** * Static representation of the [[description]] property for query construction. * Use to reference this property in query operations such as 'select' in the fluent request API. */ const DESCRIPTION: StringField; /** * All fields of the SalesQuoteExternalPriceInactivityReasonCode entity. */ const _allFields: Array>; /** * All fields selector. */ const ALL_FIELDS: AllFields; /** * All key fields of the SalesQuoteExternalPriceInactivityReasonCode entity. */ const _keyFields: Array>; /** * Mapping of all key field names to the respective static field property SalesQuoteExternalPriceInactivityReasonCode. */ const _keys: { [keys: string]: Field; }; } //# sourceMappingURL=SalesQuoteExternalPriceInactivityReasonCode.d.ts.map