import { ComplexTypeField, ConstructorOrField, DeSerializers, DefaultDeSerializers, DeserializedType, EdmTypeField, Entity, FieldOptions, OrderableEdmTypeField, PropertyMetadata } from '@sap-cloud-sdk/odata-v4'; /** * HandlingUnitMoveResultType */ export interface HandlingUnitMoveResultType { /** * Created By User. */ createdByUser: DeserializedType; /** * Creation Date Time. * @nullable */ creationDateTime?: DeserializedType; /** * Gross Weight. */ grossWeight: DeserializedType; /** * Handling Unit Char Uuid. * @nullable */ handlingUnitCharUuid?: DeserializedType; /** * Handling Unit External Id. */ handlingUnitExternalId: DeserializedType; /** * Handling Unit Internal Status. */ handlingUnitInternalStatus: DeserializedType; /** * Handling Unit Reference Document. */ handlingUnitReferenceDocument: DeserializedType; /** * Packaging Material. */ packagingMaterial: DeserializedType; /** * Packaging Material Type. */ packagingMaterialType: DeserializedType; /** * Parent Handling Unit Number. */ parentHandlingUnitNumber: DeserializedType; /** * Plant. */ plant: DeserializedType; /** * Receiving Storage Bin. */ receivingStorageBin: DeserializedType; /** * Receiving Storage Location. */ receivingStorageLocation: DeserializedType; /** * Warehouse. */ warehouse: DeserializedType; /** * Weight Unit. */ weightUnit: DeserializedType; } /** * HandlingUnitMoveResultTypeField * @typeparam EntityT - Type of the entity the complex type field belongs to. */ export declare class HandlingUnitMoveResultTypeField extends ComplexTypeField { private _fieldBuilder; /** * Representation of the [[HandlingUnitMoveResultType.createdByUser]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ createdByUser: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.creationDateTime]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ creationDateTime: OrderableEdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.grossWeight]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ grossWeight: OrderableEdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.handlingUnitCharUuid]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ handlingUnitCharUuid: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.handlingUnitExternalId]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ handlingUnitExternalId: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.handlingUnitInternalStatus]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ handlingUnitInternalStatus: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.handlingUnitReferenceDocument]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ handlingUnitReferenceDocument: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.packagingMaterial]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ packagingMaterial: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.packagingMaterialType]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ packagingMaterialType: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.parentHandlingUnitNumber]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ parentHandlingUnitNumber: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.plant]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ plant: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.receivingStorageBin]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ receivingStorageBin: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.receivingStorageLocation]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ receivingStorageLocation: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.warehouse]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ warehouse: EdmTypeField; /** * Representation of the [[HandlingUnitMoveResultType.weightUnit]] property for query construction. * Use to reference this property in query operations such as 'filter' in the fluent request API. */ weightUnit: EdmTypeField; /** * Creates an instance of HandlingUnitMoveResultTypeField. * @param fieldName - Actual name of the field as used in the OData request. * @param fieldOf - Either the parent entity constructor of the parent complex type this field belongs to. */ constructor(fieldName: string, fieldOf: ConstructorOrField, deSerializers: DeSerializersT, fieldOptions?: FieldOptions); } export declare namespace HandlingUnitMoveResultType { /** * Metadata information on all properties of the `HandlingUnitMoveResultType` complex type. */ const _propertyMetadata: PropertyMetadata[]; } //# sourceMappingURL=HandlingUnitMoveResultType.d.ts.map