/** A license metric */
export interface LicenseMetric {
  /** The key of the license metric. */
  key: string;
  /** The value for the license metric. */
  value: string;
}
