CreateStoreResponseRec

Response record returned by the CreateStore function.

EXPORT CreateStoreResponseRec := RECORD
  BOOLEAN                     succeeded;
  BOOLEAN                     already_present;
  STRING                      store_name;
  STRING                      description;
  BOOLEAN                     has_exceptions;
  ExceptionListLayout         exceptions;
END;
succeeded TRUE if a new store was created, FALSE if store already existed or an error occurred
already_present TRUE if the store already existed
store_name Name of the store
description Description of the store
has_exceptions TRUE if any exceptions occurred during the operation
exceptions ExceptionListLayout record containing any error details