Click or drag to resize

IOperationServiceAddOrUpdateKitchenOrderItemExternalData Method

Adds or updates kitchen order item external data. Use DeleteKitchenOrderItemExternalData(IKitchenOrder, Guid, String) to delete the data when it's no longer needed.

Namespace:  Resto.Front.Api
Assembly:  Resto.Front.Api.V8 (in Resto.Front.Api.V8.dll)
Syntax
C#
void AddOrUpdateKitchenOrderItemExternalData(
	IKitchenOrder order,
	Guid baseOrderItemId,
	string key,
	string value,
	bool isPublic
)

Parameters

order
Type: Resto.Front.Api.Data.KitchenIKitchenOrder
Order to which item external data will be added.
baseOrderItemId
Type: SystemGuid
BaseOrderItemId of item to which external data will be added.
key
Type: SystemString
External data key. Max length - 256 chars.
value
Type: SystemString
External data value. Max length - 32000 chars.
isPublic
Type: SystemBoolean
Whether the external data item should be sent to iikoRMS server then can be available in OLAP report and via iikoRMS API. 'false' means that the external data item will be stored in iikoFront during order lifetime and can be obtained via iikoFront API.
See Also