/** * GO/src/orderservice/orderservice.proto * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: version not set * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { OrderHistoryEntryorderStatus } from './orderHistoryEntryorderStatus'; import { UUIDDef } from './uUIDDef'; export interface OrderHistoryEntry { id?: UUIDDef; orderId?: UUIDDef; userId?: UUIDDef; created?: string; description?: string; status?: OrderHistoryEntryorderStatus; }