function-apps/Append-Transaction/src/main/java/org/inventory/hub/TransactionDocument.java [9:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String id;
    public String description;
    public String type;
    public String transactionTime;
    public TransactionEvent.ProductInformation productInformation;
    public TransactionEvent.PointOfTransactionLocation pointOfTransaction;

    public class ProductInformation {
        public String productId;
        public String productName;
        public String description;
        public String count;
    }

    // TODO: retrieve this record from the CosmosDB may be?
    public class PointOfTransactionLocation {
        public String id;
        public String description;
        public String location;
        public String longitude;
        public String latitude;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



function-apps/Append-Transaction/src/main/java/org/inventory/hub/TransactionEvent.java [14:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String id;
    public String description;
    public String type;
    public String transactionTime;
    public TransactionEvent.ProductInformation productInformation;
    public TransactionEvent.PointOfTransactionLocation pointOfTransaction;

    public class ProductInformation {
        public String productId;
        public String productName;
        public String description;
        public String count;
    }

    // TODO: retrieve this record from the CosmosDB may be?
    public class PointOfTransactionLocation {
        public String id;
        public String description;
        public String location;
        public String longitude;
        public String latitude;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



