@jlenon7/zedjs
Version:
Riot API Library for NodeJS
24 lines (22 loc) • 367 B
text/typescript
import { LolStatusServiceStatusIncident } from './lol-status-service-indicents.dto'
/**
* Lol Service dto
*/
export class LolStatusServiceDTO {
/**
* Service name
*/
name: string
/**
* Service status
*/
status: string
/**
* Service slug
*/
slug: string
/**
* Service incidents
*/
indicents: LolStatusServiceStatusIncident
}