opcotech/elemo

View on GitHub
web/packages/elemo-client/models/SystemVersion.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type SystemVersion = {
  /**
   * Version of the application.
   */
  version: string;
  /**
   * Commit hash of the build.
   */
  commit: string;
  /**
   * Build date and time of the application.
   */
  date: string;
  /**
   * Go version used to build the application.
   */
  go_version: string;
};