EventRoutesGetByIdResponse type

getById 작업에 대한 응답 데이터를 포함합니다.

type EventRoutesGetByIdResponse = EventRoute & {
  _response: coreHttp.HttpResponse & {
    bodyAsText: string
    parsedBody: EventRoute
  }
}